mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-28 02:18:08 -05:00
12 lines
208 B
Go
12 lines
208 B
Go
package models
|
|
|
|
// Rights defines rights methods
|
|
type Rights interface {
|
|
IsAdmin(*User) bool
|
|
CanWrite(*User) bool
|
|
CanRead(*User) bool
|
|
CanDelete(*User) bool
|
|
CanUpdate(*User) bool
|
|
CanCreate(*User) bool
|
|
}
|