linstrom/storage/roles.go

12 lines
286 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
2024-09-13 13:02:32 +00:00
// TODO: More control options
// Extend upon whatever Masto, Akkoma and Misskey have
// Lots of details please
2024-08-28 15:20:38 +00:00
}