2018-07-11 11:44:17 +02:00
|
|
|
package models
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// Delete implements the delete method for listTask
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Delete a task
|
|
|
|
// @Description Deletes a task from a list. This does not mean "mark it done".
|
|
|
|
// @tags task
|
|
|
|
// @Produce json
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Param id path int true "Task ID"
|
|
|
|
// @Success 200 {object} models.Message "The created task object."
|
|
|
|
// @Failure 400 {object} models.HTTPError "Invalid task ID provided."
|
|
|
|
// @Failure 403 {object} models.HTTPError "The user does not have access to the list"
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /tasks/{id} [delete]
|
2018-08-30 08:09:17 +02:00
|
|
|
func (i *ListTask) Delete() (err error) {
|
2018-07-11 11:44:17 +02:00
|
|
|
|
|
|
|
// Check if it exists
|
2018-08-30 08:09:17 +02:00
|
|
|
_, err = GetListTaskByID(i.ID)
|
2018-07-11 11:44:17 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
_, err = x.ID(i.ID).Delete(ListTask{})
|
2018-07-11 11:44:17 +02:00
|
|
|
return
|
|
|
|
}
|