fix activedomain

This commit is contained in:
2024-11-27 15:56:26 +09:00
parent c5048a2ac3
commit aa7daf4447
3 changed files with 21 additions and 13 deletions

View File

@@ -157,6 +157,13 @@ class DomainIn(BaseModel):
encrypted_pwd = chacha20Encrypt(self.kintonepwd)
self.kintonepwd = encrypted_pwd
class ActiveDomain(BaseModel):
id: int
tenantid: str
name: str
url: str
is_active: bool
class Domain(Base):
id: int
tenantid: str