forked from ebhomengo/niki
18 lines
511 B
Go
18 lines
511 B
Go
package adminkindboxreqhandler
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/delivery/http_server/middleware"
|
|
echo "github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func (h Handler) SetRoutes(e *echo.Echo) {
|
|
r := e.Group("/admin/kindboxreqs")
|
|
|
|
// todo - add acl
|
|
r.PATCH("/accept-kind-box-req/:id", h.Accept)
|
|
r.PATCH("/reject-kind-box-req/:id", h.Reject)
|
|
r.PATCH("/deliver-kind-box-req/:id", h.Deliver)
|
|
r.PATCH("/assign-sender-agent/:id", h.AssignSenderAgent)
|
|
r.GET("/", h.GetAll, middleware.Auth(h.authSvc, h.authConfig))
|
|
}
|