1
0

Implemented team delete method

This commit is contained in:
konrad
2018-07-16 08:18:15 +02:00
committed by kolaente
parent 4cf0cd233c
commit 8a06db5351
3 changed files with 51 additions and 0 deletions

View File

@ -33,6 +33,10 @@ func (c *WebHandler) DeleteWeb(ctx echo.Context) error {
return echo.NewHTTPError(http.StatusNotFound, "This list does not exist.")
}
if models.IsErrTeamDoesNotExist(err) {
return echo.NewHTTPError(http.StatusNotFound, "This team does not exist.")
}
return echo.NewHTTPError(http.StatusInternalServerError)
}