We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db778d commit e7328baCopy full SHA for e7328ba
services/web/server/src/simcore_service_webserver/tags/schemas.py
@@ -85,7 +85,12 @@ class TagGroupCreate(InputSchema):
85
delete: bool
86
87
def to_model(self) -> AccessRightsDict:
88
- return AccessRightsDict(**self.model_dump())
+ data = self.model_dump()
89
+ return AccessRightsDict(
90
+ read=data["read"],
91
+ write=data["write"],
92
+ delete=data["delete"],
93
+ )
94
95
96
class TagGroupGet(OutputSchema):
0 commit comments