vikunja-api/models/rights.go
2018-07-10 14:02:23 +02:00

8 lines
139 B
Go

package models
// Rights defines rights methods
type Rights interface {
IsAdmin(*User) bool
CanWrite(*User) bool
CanRead(*User) bool
}