1
0

Implemented CanCreate method

This commit is contained in:
konrad
2018-07-12 23:16:32 +02:00
committed by kolaente
parent 6fd2a97574
commit ddcc063b0b
6 changed files with 26 additions and 9 deletions

View File

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