Move all settings to settings.yml

We leave the STATUS setting alone, since it's required before rails
boots. The test-specific settings now live in config/settings/test.yml
This commit is contained in:
Andy Allan 2019-03-13 16:38:03 +01:00
parent 7b08270526
commit d102c9aaf4
62 changed files with 316 additions and 349 deletions

View file

@ -1,9 +1,9 @@
module Auth
PROVIDERS = { "None" => "", "OpenID" => "openid" }.tap do |providers|
providers["Google"] = "google" if defined?(GOOGLE_AUTH_ID)
providers["Facebook"] = "facebook" if defined?(FACEBOOK_AUTH_ID)
providers["Windows Live"] = "windowslive" if defined?(WINDOWSLIVE_AUTH_ID)
providers["GitHub"] = "github" if defined?(GITHUB_AUTH_ID)
providers["Wikipedia"] = "wikipedia" if defined?(WIKIPEDIA_AUTH_ID)
providers["Google"] = "google" if Settings.key?(:google_auth_id)
providers["Facebook"] = "facebook" if Settings.key?(:facebook_auth_id)
providers["Windows Live"] = "windowslive" if Settings.key?(:windowslive_auth_id)
providers["GitHub"] = "github" if Settings.key?(:github_auth_id)
providers["Wikipedia"] = "wikipedia" if Settings.key?(:wikipedia_auth_id)
end.freeze
end