From fc3d3e0565ad9a377fcb6e2fa8ea30dcaf112f66 Mon Sep 17 00:00:00 2001 From: GareArc Date: Thu, 24 Apr 2025 23:48:18 -0400 Subject: [PATCH] fix: wrong web sso protocal source in json --- api/services/feature_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/services/feature_service.py b/api/services/feature_service.py index e62a94cc9d..145f99ad06 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -203,7 +203,7 @@ class FeatureService: features.webapp_auth.allow_email_password_login = enterprise_info["WebAppAuth"].get( "allowEmailPasswordLogin", False ) - features.webapp_auth.sso_config.protocol = enterprise_info.get("SSOEnforcedForSigninProtocol", "") + features.webapp_auth.sso_config.protocol = enterprise_info.get("SSOEnforcedForWebProtocol", "") if "License" in enterprise_info: license_info = enterprise_info["License"]