1
0

Implemented CanDelete method for lists and listitems

This commit is contained in:
konrad
2018-07-12 21:20:24 +02:00
committed by kolaente
parent 217208274e
commit 4e503072a8
6 changed files with 18 additions and 18 deletions

View File

@ -92,3 +92,10 @@ func GetListItemByID(listItemID int64) (listItem ListItem, err error) {
return
}
// CanDelete checks if the user can delete an item
func (i *ListItem) CanDelete(doer *User) (bool) {
// A user can delete an item if he has write acces to its list
list, _ := GetListByID(i.ListID)
return list.CanWrite(doer)
}