Feat/enterprise sso (#3602)

This commit is contained in:
Garfield Dai 2024-04-18 17:33:32 +08:00 committed by GitHub
commit 4481906be2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 518 additions and 21 deletions

View file

@ -105,6 +105,12 @@ class Account(UserMixin, db.Model):
def is_admin_or_owner(self):
return self._current_tenant.current_role in ['admin', 'owner']
class TenantStatus(str, enum.Enum):
NORMAL = 'normal'
ARCHIVE = 'archive'
class Tenant(db.Model):
__tablename__ = 'tenants'
__table_args__ = (