Add accounts

This commit is contained in:
2021-12-02 10:52:58 +00:00
parent e465b961a5
commit f760f9b855
6 changed files with 126 additions and 0 deletions

View File

@ -51,6 +51,7 @@ func (h *Handler) Serve() {
authenticatedFrontend.Use(h.verifyLoginWithRedirect)
authenticatedFrontend.GET("/dashboard", h.dashboard)
authenticatedFrontend.GET("/budget/:budgetid", h.budget)
authenticatedFrontend.GET("/budget/:budgetid/accounts", h.accounts)
}
api := router.Group("/api/v1")
{