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

@ -1,7 +1,6 @@
package crud
import (
"fmt"
"git.kolaente.de/konrad/list/models"
"github.com/labstack/echo"
"net/http"
@ -16,14 +15,11 @@ func (c *WebHandler) ReadAllWeb(ctx echo.Context) error {
// Get the object & bind params to struct
if err := ParamBinder(c.CObject, ctx); err != nil {
fmt.Println(err)
return echo.NewHTTPError(http.StatusBadRequest, "No or invalid model provided.")
}
lists, err := c.CObject.ReadAll(&currentUser)
if err != nil {
fmt.Println(err)
return echo.NewHTTPError(http.StatusInternalServerError, "An error occured.")
}