Add front- end backend for new category-group
This commit is contained in:
@ -56,6 +56,9 @@ func (h *Handler) LoadRoutes(router *echo.Echo) {
|
||||
category := authenticated.Group("/category")
|
||||
category.POST("/new", h.newCategory)
|
||||
|
||||
categoryGroup := authenticated.Group("/category-group")
|
||||
categoryGroup.POST("/new", h.newCategoryGroup)
|
||||
|
||||
budget := authenticated.Group("/budget")
|
||||
budget.POST("/new", h.newBudget)
|
||||
budget.GET("/:budgetid", h.budget)
|
||||
|
Reference in New Issue
Block a user