mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-01 14:58:50 +01:00
15 lines
No EOL
258 B
Ruby
15 lines
No EOL
258 B
Ruby
module Tracks
|
|
class Config
|
|
def self.salt
|
|
SITE_CONFIG['salt']
|
|
end
|
|
|
|
def self.auth_schemes
|
|
SITE_CONFIG['authentication_schemes'] || []
|
|
end
|
|
|
|
def self.openid_enabled?
|
|
auth_schemes.include?('open_id')
|
|
end
|
|
end
|
|
end |