Module: Strava::OAuth::Config

Extended by:
Config
Included in:
Config
Defined in:
lib/strava/oauth/config.rb

Constant Summary collapse

ATTRIBUTES =
%i[
  endpoint
  client_id
  client_secret
].freeze

Instance Method Summary collapse

Instance Method Details

#resetObject



16
17
18
19
20
# File 'lib/strava/oauth/config.rb', line 16

def reset
  self.endpoint = 'https://www.strava.com/oauth'
  self.client_id = nil
  self.client_secret = nil
end