diff --git a/src/models.py b/src/models.py index 9530e7d..196dc15 100644 --- a/src/models.py +++ b/src/models.py @@ -33,6 +33,7 @@ class OrgResponse(BaseModel): license_status: str = "" license_type: str = "" created_at: str + globe_access: bool = False class LicenseCreate(BaseModel): @@ -61,6 +62,7 @@ class LicenseResponse(BaseModel): cost_per_credit: Optional[float] = None budget_warning_percent: Optional[int] = None created_at: str + globe_access: bool = False class UserCreate(BaseModel): @@ -78,3 +80,4 @@ class UserResponse(BaseModel): is_active: bool last_login_at: Optional[str] created_at: str + globe_access: bool = False diff --git a/src/static/js/app.js b/src/static/js/app.js index b91823d..77c3ab9 100644 --- a/src/static/js/app.js +++ b/src/static/js/app.js @@ -247,7 +247,7 @@ async function loadOrgUsers(orgId) {