Add front- end backend for new category-group

This commit is contained in:
2022-09-23 19:12:10 +00:00
parent 99979a35b0
commit 403544e99f
5 changed files with 98 additions and 2 deletions

View File

@ -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)