enh: validate user id before saving group

This commit is contained in:
Timothy Jaeryang Baek
2025-01-20 23:09:55 -08:00
parent 31ed1fcdb8
commit aa442f694b
3 changed files with 10 additions and 1 deletions

View File

@@ -85,7 +85,6 @@ class GroupForm(BaseModel):
class GroupUpdateForm(GroupForm):
user_ids: Optional[list[str]] = None
admin_ids: Optional[list[str]] = None
class GroupTable: