Module: ActionController::HttpAuthentication::Token::ControllerMethods
- Defined in:
- actionpack/lib/action_controller/metal/http_authentication.rb
Instance Method Summary (collapse)
- - (Object) authenticate_or_request_with_http_token(realm = "Application",, &login_procedure)
- - (Object) authenticate_with_http_token(&login_procedure)
- - (Object) request_http_token_authentication(realm = "Application"))
Instance Method Details
- (Object) authenticate_or_request_with_http_token(realm = "Application",, &login_procedure)
380 381 382 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 380 def authenticate_or_request_with_http_token(realm = "Application", &login_procedure) authenticate_with_http_token(&login_procedure) || request_http_token_authentication(realm) end |
- (Object) authenticate_with_http_token(&login_procedure)
384 385 386 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 384 def authenticate_with_http_token(&login_procedure) Token.authenticate(self, &login_procedure) end |
- (Object) request_http_token_authentication(realm = "Application"))
388 389 390 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 388 def request_http_token_authentication(realm = "Application") Token.authentication_request(self, realm) end |