mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 08:10:13 +01:00
20 lines
241 B
Ruby
20 lines
241 B
Ruby
|
|
module Tracks
|
||
|
|
|
||
|
|
class Config
|
||
|
|
|
||
|
|
def self.salt
|
||
|
|
SALT
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.auth_schemes
|
||
|
|
AUTHENTICATION_SCHEMES
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.openid_enabled?
|
||
|
|
auth_schemes.include?('open_id')
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|