2018-06-12 18:17:21 +02:00
|
|
|
package models
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// Delete implements the delete method of CRUDable
|
2018-07-12 22:42:41 +02:00
|
|
|
func (l *List) Delete(id int64) (err error) {
|
2018-06-12 18:17:21 +02:00
|
|
|
// Check if the list exists
|
2018-07-12 21:20:24 +02:00
|
|
|
_, err = GetListByID(id)
|
2018-07-10 13:27:25 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-12 18:17:21 +02:00
|
|
|
// Delete the list
|
2018-07-10 13:27:25 +02:00
|
|
|
_, err = x.ID(id).Delete(&List{})
|
2018-06-12 18:17:21 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete all todoitems on that list
|
2018-07-10 13:27:25 +02:00
|
|
|
_, err = x.Where("list_id = ?", id).Delete(&ListItem{})
|
2018-06-12 18:17:21 +02:00
|
|
|
return
|
|
|
|
}
|