|
|
|
@ -317,6 +317,10 @@ func DeleteTime(ctx *context.APIContext) {
|
|
|
|
|
|
|
|
|
|
time, err := models.GetTrackedTimeByID(ctx.ParamsInt64(":id")) |
|
|
|
|
if err != nil { |
|
|
|
|
if models.IsErrNotExist(err) { |
|
|
|
|
ctx.NotFound(err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetTrackedTimeByID", err) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|