Module: ActionController::HttpAuthentication::Basic::ControllerMethods
- Defined in:
- actionpack/lib/action_controller/metal/http_authentication.rb
Instance Method Summary (collapse)
- - (Object) authenticate_or_request_with_http_basic(realm = "Application", &login_procedure)
- - (Object) authenticate_with_http_basic(&login_procedure)
- - (Object) request_http_basic_authentication(realm = "Application")
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", &login_procedure) authenticate_with_http_basic(&login_procedure) || 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(&login_procedure) HttpAuthentication::Basic.authenticate(request, &login_procedure) 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 |