Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit 99cf27b649 - Show all commits

View File

@ -73,7 +73,7 @@ func (h *Handler) Serve() {
unauthenticated.POST("/register", h.registerPost) unauthenticated.POST("/register", h.registerPost)
authenticated := api.Group("") authenticated := api.Group("")
authenticated.Use(h.verifyLoginWithRedirect) authenticated.Use(h.verifyLoginWithForbidden)
authenticated.GET("/dashboard", h.dashboard) authenticated.GET("/dashboard", h.dashboard)
user := authenticated.Group("/user") user := authenticated.Group("/user")