Skip to content

Commit d0d3bcd

Browse files
committed
fix: ensure SAML signout does not default to signin url
1 parent 4e4873c commit d0d3bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def self.fetch_boolean_env(name)
111111
# The IDP SAML login URL, (e.g., "https://login.microsoftonline.com/xxxx/saml2")
112112
config.saml[:idp_sso_target_url] = ENV.fetch('DF_SAML_IDP_TARGET_URL', nil)
113113
# The IDP SAML logout URL, (e.g., "https://login.microsoftonline.com/xxxx/saml2")
114-
config.saml[:idp_sso_signout_url] = ENV.fetch('DF_SAML_IDP_SIGNOUT_URL', config.saml[:idp_sso_target_url])
114+
config.saml[:idp_sso_signout_url] = ENV.fetch('DF_SAML_IDP_SIGNOUT_URL', nil)
115115

116116
# The SAML response certificate and name format (if no XML URL metadata is provided)
117117
if config.saml[:SAML_metadata_url].nil?

0 commit comments

Comments
 (0)