From 4d040ecc48b1dedf82c291ebeb2453ad986c49db Mon Sep 17 00:00:00 2001 From: Vaghinak Basentsyan Date: Tue, 27 May 2025 17:01:36 +0400 Subject: [PATCH] Add user permissions --- src/superannotate/lib/core/entities/work_managament.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/superannotate/lib/core/entities/work_managament.py b/src/superannotate/lib/core/entities/work_managament.py index 40aff7cb..8e23f38b 100644 --- a/src/superannotate/lib/core/entities/work_managament.py +++ b/src/superannotate/lib/core/entities/work_managament.py @@ -133,6 +133,7 @@ class WMProjectUserEntity(TimedBaseModel): email: Optional[str] state: Optional[WMUserStateEnum] custom_fields: Optional[dict] = Field(dict(), alias="customField") + permissions: Optional[dict] class Config: extra = Extra.ignore