Add budgeting

This commit is contained in:
2021-12-07 13:32:29 +00:00
parent 8f374f1d62
commit 53c51ceb8d
5 changed files with 142 additions and 6 deletions

View File

@ -57,6 +57,7 @@ func (h *Handler) Serve() {
withBudget.Use(h.verifyLoginWithRedirect)
withBudget.Use(h.getImportantData)
withBudget.GET("/budget/:budgetid", h.budgeting)
withBudget.GET("/budget/:budgetid/:year/:month", 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)