fix: category edit team permissions

This commit is contained in:
2026-03-16 22:44:23 +02:00
parent e226861a3f
commit 27f5e7b044
6 changed files with 261 additions and 82 deletions

View File

@@ -3520,6 +3520,38 @@
}
}
}
},
"teamPermissions": {
"type": "array",
"default": [],
"description": "Team permissions array",
"items": {
"type": "object",
"required": [
"teamId",
"canView",
"canPost",
"canReply",
"canModerate"
],
"properties": {
"teamId": {
"type": "string"
},
"canView": {
"type": "boolean"
},
"canPost": {
"type": "boolean"
},
"canReply": {
"type": "boolean"
},
"canModerate": {
"type": "boolean"
}
}
}
}
}
}