Module: ActionController::HttpAuthentication::Token::ControllerMethods

Defined in:
actionpack/lib/action_controller/metal/http_authentication.rb

Instance Method Summary collapse

Instance Method Details

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



389
390
391
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 389

def authenticate_or_request_with_http_token(realm = "Application", &)
  authenticate_with_http_token(&) || request_http_token_authentication(realm)
end

#authenticate_with_http_token(&login_procedure) ⇒ Object



393
394
395
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 393

def authenticate_with_http_token(&)
  Token.authenticate(self, &)
end

#request_http_token_authentication(realm = "Application") ⇒ Object



397
398
399
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 397

def request_http_token_authentication(realm = "Application")
  Token.authentication_request(self, realm)
end