Skip to content

Commit e55072e

Browse files
committed
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`.
1 parent f7bcd33 commit e55072e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/initializers/_dmproadmap.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class Application < Rails::Application
133133
# Enable shibboleth as an alternative authentication method
134134
# Requires server configuration and omniauth shibboleth provider configuration
135135
# See config/initializers/devise.rb
136-
config.x.shibboleth.enabled = true
136+
config.x.shibboleth.enabled = false
137137

138138
# Relative path to Shibboleth SSO Logouts
139139
config.x.shibboleth.login_url = '/Shibboleth.sso/Login'

0 commit comments

Comments
 (0)