forked from ebhomengo/niki
25 lines
588 B
Go
25 lines
588 B
Go
|
package adminkindboxreqhandler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
httpmsg "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
||
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func (h Handler) GetAll(c echo.Context) error {
|
||
|
var req param.KindBoxReqGetAllRequest
|
||
|
if bErr := c.Bind(&req); bErr != nil {
|
||
|
return echo.NewHTTPError(http.StatusBadRequest)
|
||
|
}
|
||
|
|
||
|
resp, sErr := h.adminKindBoxReqSvc.GetAll(c, req)
|
||
|
if sErr != nil {
|
||
|
msg, code := httpmsg.Error(sErr)
|
||
|
return echo.NewHTTPError(code, msg)
|
||
|
}
|
||
|
|
||
|
return c.JSON(http.StatusCreated, resp)
|
||
|
}
|