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

@ -4,13 +4,7 @@ package models
func (i *ListItem) Delete(id int64, doer *User) (err error) {
// Check if it exists
listitem, err := GetListItemByID(id)
if err != nil {
return
}
// Check if the user hat the right to delete that item
_, err = listItemPreCheck(i, doer, listitem.ListID)
_, err = GetListItemByID(id)
if err != nil {
return
}