1
0

Fixed CanDelete

This commit is contained in:
konrad
2018-07-12 23:33:21 +02:00
committed by kolaente
parent b24b245f4d
commit 55c02bc973
4 changed files with 10 additions and 6 deletions

View File

@ -5,7 +5,7 @@ type Rights interface {
IsAdmin(*User) bool
CanWrite(*User) bool
CanRead(*User) bool
CanDelete(*User) bool
CanDelete(*User, int64) bool
CanUpdate(*User, int64) bool
CanCreate(*User, int64) bool
}