Module: ActionController::HttpAuthentication::Basic::ControllerMethods

Defined in:
lib/action_controller/http_authentication.rb

Instance Method Summary collapse

Instance Method Details

#authenticate_or_request_with_http_basic(realm = "Application", &login_procedure) ⇒ Object



80
81
82
# File 'lib/action_controller/http_authentication.rb', line 80

def authenticate_or_request_with_http_basic(realm = "Application", &)
  authenticate_with_http_basic(&) || request_http_basic_authentication(realm)
end

#authenticate_with_http_basic(&login_procedure) ⇒ Object



84
85
86
# File 'lib/action_controller/http_authentication.rb', line 84

def authenticate_with_http_basic(&)
  HttpAuthentication::Basic.authenticate(self, &)
end

#request_http_basic_authentication(realm = "Application") ⇒ Object



88
89
90
# File 'lib/action_controller/http_authentication.rb', line 88

def request_http_basic_authentication(realm = "Application")
  HttpAuthentication::Basic.authentication_request(self, realm)
end