Fix rubocop warnings
This commit is contained in:
parent
2ef6a960d1
commit
8fe1899596
58 changed files with 500 additions and 488 deletions
|
@ -1,6 +1,7 @@
|
|||
module Auth
|
||||
PROVIDERS = { "None" => "", "OpenID" => "openid" }
|
||||
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 = { "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)
|
||||
end.freeze
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue