Merge branch '4520-arv-copy-project-uuid' closes #4520
[arvados.git] / services / api / config / initializers / omniauth.rb.example
index e7025545a16dd573e091c98691fdcc4294bc51c0..aefcf56625b90e3f3410dbcb4e8f3d4999244719 100644 (file)
@@ -1,11 +1,13 @@
 # Change this omniauth configuration to point to your registered provider
 # Since this is a registered application, add the app id and secret here
-APP_ID = 'orvos-server'
+APP_ID = 'arvados-server'
 APP_SECRET = rand(2**512).to_s(36) # CHANGE ME!
 
 # Update your custom Omniauth provider URL here
-CUSTOM_PROVIDER_URL = 'http://auth.clinicalfuture.com'
+CUSTOM_PROVIDER_URL = 'http://localhost:3002'
 
 Rails.application.config.middleware.use OmniAuth::Builder do
   provider :josh_id, APP_ID, APP_SECRET, CUSTOM_PROVIDER_URL
 end
+
+OmniAuth.config.on_failure = StaticController.action(:login_failure)