feat(backend/models): add CanCreate attribute to user model

This commit is contained in:
Masahiko AMANO 2025-07-03 20:18:47 +03:00
parent 436f164ab9
commit 7062cb630e

View File

@ -8,8 +8,9 @@ import (
)
type User struct {
Name string `json:"name"`
IsAdmin bool `json:"isAdmin"`
Name string `json:"name"`
IsAdmin bool `json:"isAdmin"`
CanCreate bool `json:"canCreate"`
}
type MIME struct {