From d9adb243915fb2cd16c3139d2096e81f640c7113 Mon Sep 17 00:00:00 2001 From: fatelei Date: Fri, 8 May 2026 18:01:36 +0800 Subject: [PATCH] chore: remove enterprise check --- api/services/enterprise/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/services/enterprise/base.py b/api/services/enterprise/base.py index 1d22da00f4..03a52fe47e 100644 --- a/api/services/enterprise/base.py +++ b/api/services/enterprise/base.py @@ -156,8 +156,6 @@ class EnterpriseRequest(BaseRequest): both the assertions and the header wiring so callers only have to supply business payload. """ - if not dify_config.ENTERPRISE_ENABLED: - raise EnterpriseAPIError("Enterprise edition is not enabled") if not tenant_id: raise ValueError("tenant_id must be provided for inner RBAC requests")