forked from ebhomengo/niki
1
0
Fork 0

Compare commits

..

1 Commits

2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package benefactorkindboxhandler
import (
"git.gocasts.ir/ebhomengo/niki/pkg/claim"
"net/http"
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box"
@ -24,6 +25,8 @@ func (h Handler) Get(c echo.Context) error {
if bErr := c.Bind(&req); bErr != nil {
return echo.NewHTTPError(http.StatusBadRequest)
}
claims := claim.GetClaimsFromEchoContext(c)
req.BenefactorID = claims.UserID
resp, sErr := h.benefactorKindBoxSvc.Get(c.Request().Context(), req)
if sErr != nil {

View File

@ -1,8 +1,8 @@
package benefactorkindboxparam
type KindBoxGetRequest struct {
BenefactorID uint
KindBoxID uint
BenefactorID uint `json:"-"`
KindBoxID uint `param:"id"`
}
type KindBoxGetResponse struct {