Fix 0001_enable-uuid-ossp and reorder

This commit is contained in:
2021-12-06 20:36:10 +00:00
parent e2d22a1080
commit 1437fc7b8d
3 changed files with 24 additions and 21 deletions

View File

@ -73,10 +73,10 @@ func (h *Handler) Serve() {
user := authenticated.Group("/user")
user.GET("/logout", logout)
budget := api.Group("/budget")
budget := authenticated.Group("/budget")
budget.POST("/new", h.newBudget)
transaction := api.Group("/transaction")
transaction := authenticated.Group("/transaction")
transaction.POST("/new", h.newTransaction)
transaction.POST("/import/ynab", h.importYNAB)