1
0

Added new checks (#2)

* added gocyclo-check
* Added new tests to drone
* Added new checks to makefile
This commit is contained in:
konrad
2018-09-23 19:15:14 +00:00
committed by Gitea
parent b912ff4176
commit e724aeb206
9 changed files with 34 additions and 8 deletions

View File

@ -30,7 +30,7 @@ func (c *WebHandler) ReadAllWeb(ctx echo.Context) error {
return echo.NewHTTPError(http.StatusNotFound, "This namespace does not exist.")
}
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
return echo.NewHTTPError(http.StatusInternalServerError, "An error occurred.")
}
return ctx.JSON(http.StatusOK, lists)

View File

@ -31,7 +31,7 @@ func (c *WebHandler) ReadOneWeb(ctx echo.Context) error {
return echo.NewHTTPError(http.StatusNotFound)
}
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
return echo.NewHTTPError(http.StatusInternalServerError, "An error occurred.")
}
// Check rights