Class: OIDCProvider::AuthorizationsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- OIDCProvider::AuthorizationsController
- Includes:
- Concerns::ConnectEndpoint
- Defined in:
- app/controllers/oidc_provider/authorizations_controller.rb
Instance Method Summary collapse
Methods included from Concerns::ConnectEndpoint
#handle_oauth_error!, #oauth_error, #oauth_request, #oauth_response, #require_oauth_request
Methods included from Concerns::Session
Methods included from Concerns::Authentication
#current_token, #oidc_current_account, #require_access_token, #require_authentication, #unauthenticate!
Instance Method Details
#create ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'app/controllers/oidc_provider/authorizations_controller.rb', line 10 def create puts "scopes: #{requested_scopes}" = Authorization.create( client_id: @client.identifier, nonce: oauth_request.nonce, scopes: requested_scopes, account: oidc_current_account ) oauth_response.code = .code oauth_response.redirect_uri = @redirect_uri oauth_response.approve! redirect_to oauth_response.location # If we ever need to support denied authorizations that is done by: # oauth_request.access_denied! end |