1
0

implemented delete list item via CRUD

This commit is contained in:
konrad
2018-07-11 11:44:17 +02:00
committed by kolaente
parent 281e9c1cd0
commit 5c4fb7ed73
5 changed files with 47 additions and 61 deletions

View File

@ -92,21 +92,3 @@ func GetListItemByID(listItemID int64) (listItem ListItem, err error) {
return
}
// DeleteListItemByID deletes a list item by its ID
func DeleteListItemByID(itemID int64, doer *User) (err error) {
// Check if it exists
listitem, err := GetListItemByID(itemID)
if err != nil {
return
}
// Check if the user hat the right to delete that item
if listitem.CreatedByID != doer.ID {
return ErrNeedToBeItemOwner{ItemID: itemID, UserID: doer.ID}
}
_, err = x.ID(itemID).Delete(ListItem{})
return
}