mirror of
https://github.com/gabehf/BudgetBuddy.git
synced 2026-03-15 02:06:01 -07:00
new endpoints, budget adjustment
This commit is contained in:
parent
cc36b80e72
commit
c4047a36cc
9 changed files with 276 additions and 20 deletions
3
main.go
3
main.go
|
|
@ -41,6 +41,9 @@ func main() {
|
|||
r.Post("/auth/login", routes.Login)
|
||||
r.Post("/auth/login/session", routes.Login)
|
||||
r.Post("/auth/createaccount", routes.CreateAccount)
|
||||
r.Post("/auth/changepassword", routes.ChangePassword)
|
||||
r.Post("/auth/changename", routes.ChangeName)
|
||||
r.Post("/auth/deleteaccount", routes.DeleteAccount)
|
||||
r.Get("/userinfo", routes.UserInfo)
|
||||
|
||||
r.Mount("/w", widgets.Router())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue