linstrom/storage/roles.go
2024-08-28 17:20:38 +02:00

8 lines
172 B
Go

package storage
type Role struct {
// Name of the role
Name string
// If set, counts as all permissions being set and all restrictions being disabled
FullAdmin bool
}