From 2b1facc7a63c4ae74c289b1366b3dd0c7c143a66 Mon Sep 17 00:00:00 2001 From: Yeuoly <45712896+Yeuoly@users.noreply.github.com> Date: Wed, 12 Mar 2025 14:13:41 +0800 Subject: [PATCH] fix: set marketplace feature to false in feature_service.py (#15578) --- 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 113cd52552..add34d9f43 100644 --- a/api/services/feature_service.py +++ b/api/services/feature_service.py @@ -65,7 +65,7 @@ class SystemFeatureModel(BaseModel): sso_enforced_for_web: bool = False sso_enforced_for_web_protocol: str = "" enable_web_sso_switch_component: bool = False - enable_marketplace: bool = True + enable_marketplace: bool = False max_plugin_package_size: int = dify_config.PLUGIN_MAX_PACKAGE_SIZE enable_email_code_login: bool = False enable_email_password_login: bool = True