Implement account editing and autocomplete

This commit is contained in:
2022-04-22 21:33:52 +00:00
committed by Gitea
parent 75a1839456
commit d22816dfd1
4 changed files with 32 additions and 0 deletions

View File

@ -65,6 +65,7 @@ func (h *Handler) LoadRoutes(router *gin.Engine) {
budget.GET("/:budgetid/:year/:month", h.budgetingForMonth)
budget.POST("/:budgetid/category/:categoryid/:year/:month", h.setCategoryAssignment)
budget.GET("/:budgetid/autocomplete/payees", h.autocompletePayee)
budget.GET("/:budgetid/autocomplete/accounts", h.autocompleteAccounts)
budget.GET("/:budgetid/autocomplete/categories", h.autocompleteCategories)
budget.GET("/:budgetid/problematic-transactions", h.problematicTransactions)
budget.DELETE("/:budgetid", h.deleteBudget)