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:
parent
7b08270526
commit
d102c9aaf4
62 changed files with 316 additions and 349 deletions
10
lib/auth.rb
10
lib/auth.rb
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue