Implemented CanDelete method for lists and listitems

This commit is contained in:
konrad 2018-07-12 21:20:24 +02:00 committed by kolaente
parent 217208274e
commit 4e503072a8
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
6 changed files with 18 additions and 18 deletions

View file

@ -19,6 +19,9 @@ func (c *WebHandler) DeleteWeb(ctx echo.Context) error {
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError)
}
if !c.CObject.CanDelete(&user) {
return echo.NewHTTPError(http.StatusForbidden)
}
err = c.CObject.Delete(id, &user)
if err != nil {