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

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

Instance Method Summary (collapse)

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", &)
  authenticate_with_http_token(&) || 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(&)
  Token.authenticate(self, &)
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