12 lines
307 B
Ruby
12 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationController < ActionController::Base
|
|
protect_from_forgery with: :exception
|
|
|
|
if ENV['BASIC_AUTH_NAME'] && ENV['BASIC_AUTH_PASSWORD']
|
|
http_basic_authenticate_with \
|
|
name: ENV['BASIC_AUTH_NAME'],
|
|
password: ENV['BASIC_AUTH_PASSWORD']
|
|
end
|
|
end
|