1
0
This commit is contained in:
konrad
2018-07-18 22:19:51 +02:00
parent 935c99be45
commit d06ed68125
4 changed files with 0 additions and 14 deletions

View File

@ -4,7 +4,6 @@ import (
"git.kolaente.de/konrad/list/models"
"github.com/labstack/echo"
"net/http"
"fmt"
)
// DeleteWeb is the web handler to delete something
@ -26,8 +25,6 @@ func (c *WebHandler) DeleteWeb(ctx echo.Context) error {
err = c.CObject.Delete()
if err != nil {
fmt.Println(err)
if models.IsErrNeedToBeListAdmin(err) {
return echo.NewHTTPError(http.StatusForbidden, "You need to be the list admin to delete a list.")
}