fixed blocking issues
This commit is contained in:
@@ -190,7 +190,7 @@ func RegisterAdminRoutes(e *echo.Echo, userHandler *user.Handler, companyHandler
|
||||
cmsGP.DELETE("/:id", cmsHandler.Delete)
|
||||
}
|
||||
|
||||
// Kanban Routes
|
||||
// Kanban Routes — paths are /admin/v1/kanban/* (RegisterRoutes expects this /kanban group)
|
||||
kanbanGP := adminV1.Group("/kanban")
|
||||
{
|
||||
kanbanGP.Use(userHandler.AuthMiddleware())
|
||||
@@ -318,7 +318,7 @@ func RegisterPublicRoutes(e *echo.Echo, customerHandler *customer.Handler, tende
|
||||
cmsGP.GET("/:key", cmsHandler.GetByKey)
|
||||
}
|
||||
|
||||
// Kanban (mobile bid workflow board)
|
||||
// Kanban (mobile bid workflow board) — paths are /api/v1/kanban/*
|
||||
kanbanGP := v1.Group("/kanban")
|
||||
{
|
||||
kanbanGP.Use(customerHandler.AuthMiddleware())
|
||||
|
||||
Reference in New Issue
Block a user