Module: ActionController::HttpAuthentication::Basic::ControllerMethods

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

Instance Method Summary (collapse)

Instance Method Details

- (Object) authenticate_or_request_with_http_basic(realm = "Application", &login_procedure)



113
114
115
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 113

def authenticate_or_request_with_http_basic(realm = "Application", &)
  authenticate_with_http_basic(&) || request_http_basic_authentication(realm)
end

- (Object) authenticate_with_http_basic(&login_procedure)



117
118
119
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 117

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

- (Object) request_http_basic_authentication(realm = "Application")



121
122
123
# File 'actionpack/lib/action_controller/metal/http_authentication.rb', line 121

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