Class: OmniAuth::Strategies::PGE

Inherits:
OAuth2
  • Object
show all
Defined in:
lib/omniauth/strategies/pge.rb

Instance Method Summary collapse

Instance Method Details

#authorize_paramsObject



16
17
18
19
20
21
22
23
24
# File 'lib/omniauth/strategies/pge.rb', line 16

def authorize_params
  super.tap do |params|
    %w[scope client_options].each do |v|
      if request.params[v]
        params[v.to_sym] = request.params[v]
      end
    end
  end
end

#request_phaseObject



12
13
14
# File 'lib/omniauth/strategies/pge.rb', line 12

def request_phase
  super
end