From cbea30e65f15789ae91cbf3d0ef608f5cb2e8056 Mon Sep 17 00:00:00 2001 From: GareArc Date: Wed, 9 Apr 2025 17:21:16 -0400 Subject: [PATCH] fix: bad field name --- 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 c38c9cb72b..e811408c41 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -204,7 +204,7 @@ class FeatureService: features.branding.favicon = enterprise_info["Branding"].get("favicon", "") if "WebAppAuth" in enterprise_info: - features.webapp_auth.allow_sso = enterprise_info["WebAppAuth"].get("allowSSO", False) + features.webapp_auth.allow_sso = enterprise_info["WebAppAuth"].get("allowSso", False) features.webapp_auth.allow_email_code_login = enterprise_info["WebAppAuth"].get( "allowEmailCodeLogin", False )