Fix 0001_enable-uuid-ossp and reorder
This commit is contained in:
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user