Implement ynab-export

This commit is contained in:
2022-02-23 19:32:49 +00:00
parent 4c7c61e820
commit 27188e2e27
5 changed files with 186 additions and 1 deletions

View File

@ -67,6 +67,7 @@ func (h *Handler) LoadRoutes(router *gin.Engine) {
authenticated.GET("/budget/:budgetid/autocomplete/categories", h.autocompleteCategories)
authenticated.DELETE("/budget/:budgetid", h.deleteBudget)
authenticated.POST("/budget/:budgetid/import/ynab", h.importYNAB)
authenticated.POST("/budget/:budgetid/export/ynab", h.exportYNAB)
authenticated.POST("/budget/:budgetid/settings/clear", h.clearBudget)
budget := authenticated.Group("/budget")