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
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
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)
}