feat: add scope to the role

This commit is contained in:
2025-06-25 11:55:04 +02:00
parent 329fac415f
commit 58974d9789
2 changed files with 19 additions and 16 deletions

View File

@ -51,6 +51,7 @@ type Permission struct {
type Role struct {
ID uuid.UUID `json:"id"`
Name string `json:"name"`
Scope string `json:"scope"`
Description *string `json:"description"`
}