module Rack::OAuth2::Server::Extension::ResponseMode::AuthorizationRequest

Public Class Methods

included(klass) click to toggle source
# File lib/rack/oauth2/server/extension/response_mode.rb, line 7
def self.included(klass)
  klass.send :attr_optional, :response_mode
end
new(env) click to toggle source
Calls superclass method
# File lib/rack/oauth2/server/extension/response_mode.rb, line 11
def initialize(env)
  super
  @response_mode = params['response_mode']
end