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

@ -16,3 +16,10 @@ func (i *ListItem) CanUpdate(doer *User, id int64) bool {
list, _ := GetListByID(lI.ListID)
return list.CanWrite(doer)
}
// CanCreate determines if a user has the right to create a list item
func (i *ListItem) CanCreate(doer *User, lID int64) bool {
// A user can create an item if he has write acces to its list
list, _ := GetListByID(lID)
return list.CanWrite(doer)
}