From e7c2fa1cfa27c1625805c5309972373debf285bd Mon Sep 17 00:00:00 2001 From: GareArc Date: Wed, 12 Mar 2025 10:48:58 -0400 Subject: [PATCH] fix: remove system feature is_branding --- api/services/feature_service.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/services/feature_service.py b/api/services/feature_service.py index 51265619df..e2298cc573 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -72,7 +72,6 @@ class SystemFeatureModel(BaseModel): is_allow_create_workspace: bool = False is_email_setup: bool = False license: LicenseModel = LicenseModel() - is_enterprise: bool = False branding: BrandingModel = BrandingModel() @@ -96,8 +95,6 @@ class FeatureService: if dify_config.ENTERPRISE_ENABLED: system_features.enable_web_sso_switch_component = True - system_features.is_enterprise = True - cls._fulfill_params_from_enterprise(system_features) return system_features