mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 17:08:03 +08:00
fix(api): allow the team plan to use email delivery
This commit is contained in:
@ -211,7 +211,10 @@ class FeatureService:
|
||||
return True
|
||||
if not tenant_id:
|
||||
return False
|
||||
return features.billing.enabled and features.billing.subscription.plan == CloudPlan.PROFESSIONAL
|
||||
return features.billing.enabled and features.billing.subscription.plan in (
|
||||
CloudPlan.PROFESSIONAL,
|
||||
CloudPlan.TEAM,
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def get_system_features(cls) -> SystemFeatureModel:
|
||||
|
||||
Reference in New Issue
Block a user