Fixed CanDelete
This commit is contained in:
parent
b24b245f4d
commit
55c02bc973
4 changed files with 10 additions and 6 deletions
|
|
@ -19,7 +19,7 @@ func (c *WebHandler) DeleteWeb(ctx echo.Context) error {
|
|||
if err != nil {
|
||||
return echo.NewHTTPError(http.StatusInternalServerError)
|
||||
}
|
||||
if !c.CObject.CanDelete(&user) {
|
||||
if !c.CObject.CanDelete(&user, id) {
|
||||
return echo.NewHTTPError(http.StatusForbidden)
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue