class OmniAuth::Strategies::ClickUp

Public Instance Methods

callback_phase() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/click_up.rb, line 26
def callback_phase
  super
end
raw_info() click to toggle source
# File lib/omniauth/strategies/click_up.rb, line 42
def raw_info
  access_token.options[:header_format] = "%s"
  @raw_info ||= JSON.load(access_token.get('user').body)
end
request_phase() click to toggle source

These are called after authentication has succeeded. If possible, you should try to set the UID without making additional calls (if the user id is returned with the token or as a URI parameter). This may not be possible with all providers.

Calls superclass method
# File lib/omniauth/strategies/click_up.rb, line 22
def request_phase
  super
end