X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8ad2f4b5c8f14f97c44e91a599e6e7acb6f74f0b..2ac8b4b76057c293fc93f492359933db87abfc59:/config/initializers/omniauth.rb diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb index ea174a83e..6de63f6ee 100644 --- a/config/initializers/omniauth.rb +++ b/config/initializers/omniauth.rb @@ -19,8 +19,16 @@ else openid_store = OpenID::Store::Filesystem.new(Rails.root.join("tmp/openids")) end +openid_options = { :name => "openid", :store => openid_store } +google_options = { :name => "google", :scope => "email", :access_type => "online" } + +if defined?(GOOGLE_OPENID_REALM) + google_options[:openid_realm] = GOOGLE_OPENID_REALM +end + Rails.application.config.middleware.use OmniAuth::Builder do - provider :openid, :name => "openid", :store => openid_store + provider :openid, openid_options + provider :google_oauth2, GOOGLE_AUTH_ID, GOOGLE_AUTH_SECRET, google_options if defined?(GOOGLE_AUTH_ID) end # Pending fix for: https://github.com/intridea/omniauth/pull/795