class OmniAuth::Strategies::Cloud66

Public Instance Methods

authorize_params() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/cloud66.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
callback_url() click to toggle source
# File lib/omniauth/strategies/cloud66.rb, line 26
def callback_url
  full_host + script_name + callback_path
end
request_phase() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/cloud66.rb, line 12
def request_phase
  super
end