cleanup
This commit is contained in:
parent
935c99be45
commit
d06ed68125
4 changed files with 0 additions and 14 deletions
|
|
@ -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.")
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue