module ActionController::HttpAuthentication::Basic::ControllerMethods::ClassMethods

Public Instance Methods

http_basic_authenticate_with(name:, password:, realm: nil, **options) click to toggle source
# File lib/action_controller/metal/http_authentication.rb, line 72
def http_basic_authenticate_with(name:, password:, realm: nil, **options)
  before_action(options) { http_basic_authenticate_or_request_with name: name, password: password, realm: realm }
end