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



111
112
113
# File 'lib/action_controller/http_authentication.rb', line 111

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



115
116
117
# File 'lib/action_controller/http_authentication.rb', line 115

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

#request_http_basic_authentication(realm = "Application") ⇒ Object



119
120
121
# File 'lib/action_controller/http_authentication.rb', line 119

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