mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-24 07:15:43 +00:00
FIX[BE} fixing get all adjustment change respose json
This commit is contained in:
@@ -14,9 +14,9 @@ func AdjustmentRoutes(v1 fiber.Router, u user.UserService, s adjustment.Adjustme
|
||||
|
||||
route := v1.Group("/adjustments")
|
||||
route.Use(m.Auth(u))
|
||||
// Standard CRUD routes following master data pattern
|
||||
route.Get("/", ctrl.AdjustmentHistory) // Get all with pagination and filters
|
||||
route.Post("/", ctrl.Adjustment) // Create adjustment
|
||||
|
||||
route.Get("/", ctrl.AdjustmentHistory)
|
||||
route.Post("/", ctrl.Adjustment)
|
||||
route.Get("/:id", ctrl.GetOne)
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user