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)
382 383 384 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 382 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)
386 387 388 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 386 def authenticate_with_http_token(&login_procedure) Token.authenticate(self, &login_procedure) end |
- (Object) request_http_token_authentication(realm = "Application")
390 391 392 |
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 390 def request_http_token_authentication(realm = "Application") Token.authentication_request(self, realm) end |