Browse Source

fix users had already joined a workspace, but the system still first … (#9834)

Co-authored-by: yong.zhang <yong.zhang@yesno.com.cn>
tags/0.10.2
G81192 1 year ago
parent
commit
a17f169e01
No account linked to committer's email address
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      api/services/account_service.py

+ 5
- 3
api/services/account_service.py View File

def create_owner_tenant_if_not_exist( def create_owner_tenant_if_not_exist(
account: Account, name: Optional[str] = None, is_setup: Optional[bool] = False account: Account, name: Optional[str] = None, is_setup: Optional[bool] = False
): ):
"""Create owner tenant if not exist"""
if not FeatureService.get_system_features().is_allow_create_workspace and not is_setup:
raise WorkSpaceNotAllowedCreateError()
"""Check if user have a workspace or not"""
available_ta = ( available_ta = (
TenantAccountJoin.query.filter_by(account_id=account.id).order_by(TenantAccountJoin.id.asc()).first() TenantAccountJoin.query.filter_by(account_id=account.id).order_by(TenantAccountJoin.id.asc()).first()
) )
if available_ta: if available_ta:
return return


"""Create owner tenant if not exist"""
if not FeatureService.get_system_features().is_allow_create_workspace and not is_setup:
raise WorkSpaceNotAllowedCreateError()

if name: if name:
tenant = TenantService.create_tenant(name=name, is_setup=is_setup) tenant = TenantService.create_tenant(name=name, is_setup=is_setup)
else: else:

Loading…
Cancel
Save