Try to display simple budget screen

This commit is contained in:
2021-12-07 13:02:39 +00:00
parent 494c1431fe
commit 8f374f1d62
5 changed files with 80 additions and 19 deletions

View File

@ -56,7 +56,8 @@ func (h *Handler) Serve() {
withBudget := router.Group("")
withBudget.Use(h.verifyLoginWithRedirect)
withBudget.Use(h.getImportantData)
withBudget.GET("/budget/:budgetid", h.budget)
withBudget.GET("/budget/:budgetid", h.budgeting)
withBudget.GET("/budget/:budgetid/all-accounts", h.budget)
withBudget.GET("/budget/:budgetid/accounts", h.accounts)
withBudget.GET("/budget/:budgetid/account/:accountid", h.account)