linstrom/storage/roles.go

9 lines
172 B
Go
Raw Normal View History

2024-08-28 15:20:38 +00:00
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
}