mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
20 lines
No EOL
241 B
Ruby
20 lines
No EOL
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 |