Implement problematic transactions endpoint

This commit is contained in:
2022-04-22 21:24:48 +00:00
committed by Gitea
parent f56d095016
commit 3b465f17cf
2 changed files with 20 additions and 2 deletions

View File

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