From e55072e3809bb7b90c21d407927b898b4bd23f71 Mon Sep 17 00:00:00 2001 From: aaronskiba Date: Fri, 6 Feb 2026 08:58:18 -0700 Subject: [PATCH] Bugfix: Disable Shibboleth / fix sign-out error Although `config.x.shibboleth.enabled` was previously set to true, Shibboleth sign-in was not working within the app. Additionally, signing out of the app was throwing the following error. ``` Routing Error No route matches [GET] "/Shibboleth.sso/Logout" ``` This error can be traced to `ApplicationController#after_sign_out_path_for`. --- config/initializers/_dmproadmap.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/_dmproadmap.rb b/config/initializers/_dmproadmap.rb index 200b7ddac5..8ceadfa5f7 100644 --- a/config/initializers/_dmproadmap.rb +++ b/config/initializers/_dmproadmap.rb @@ -133,7 +133,7 @@ class Application < Rails::Application # Enable shibboleth as an alternative authentication method # Requires server configuration and omniauth shibboleth provider configuration # See config/initializers/devise.rb - config.x.shibboleth.enabled = true + config.x.shibboleth.enabled = false # Relative path to Shibboleth SSO Logouts config.x.shibboleth.login_url = '/Shibboleth.sso/Login'