Skip to content

Commit

Permalink
fix: enterprise create workspace (langgenius#9921)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouhaoJiang authored Oct 28, 2024
1 parent aa11141 commit 9633c5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/controllers/inner_api/workspace/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def post(self):
if account is None:
return {"message": "owner account not found."}, 404

tenant = TenantService.create_tenant(args["name"])
tenant = TenantService.create_tenant(args["name"], is_from_dashboard=True)
TenantService.create_tenant_member(tenant, account, role="owner")

tenant_was_created.send(tenant)
Expand Down
8 changes: 6 additions & 2 deletions api/services/account_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,13 @@ def _get_login_cache_key(*, account_id: str, token: str):

class TenantService:
@staticmethod
def create_tenant(name: str, is_setup: Optional[bool] = False) -> Tenant:
def create_tenant(name: str, is_setup: Optional[bool] = False, is_from_dashboard: Optional[bool] = False) -> Tenant:
"""Create tenant"""
if not FeatureService.get_system_features().is_allow_create_workspace and not is_setup:
if (
not FeatureService.get_system_features().is_allow_create_workspace
and not is_setup
and not is_from_dashboard
):
from controllers.console.error import NotAllowedCreateWorkspace

raise NotAllowedCreateWorkspace()
Expand Down

0 comments on commit 9633c5d

Please sign in to comment.