🐛 Fix index page is null
This commit is contained in:
parent
2f940d257e
commit
7e5fdb684e
@ -2,6 +2,7 @@ package ui
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"git.solsynth.dev/hydrogen/passport/pkg/services"
|
"git.solsynth.dev/hydrogen/passport/pkg/services"
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
)
|
)
|
||||||
@ -25,6 +26,10 @@ func MapUserInterface(A *fiber.App, authFunc func(c *fiber.Ctx, overrides ...str
|
|||||||
|
|
||||||
pages := A.Group("/").Name("Pages")
|
pages := A.Group("/").Name("Pages")
|
||||||
|
|
||||||
|
pages.Get("/", func(c *fiber.Ctx) error {
|
||||||
|
return c.Redirect("/users/me")
|
||||||
|
})
|
||||||
|
|
||||||
pages.Get("/sign-up", signupPage)
|
pages.Get("/sign-up", signupPage)
|
||||||
pages.Get("/sign-in", signinPage)
|
pages.Get("/sign-in", signinPage)
|
||||||
pages.Get("/mfa", mfaRequestPage)
|
pages.Get("/mfa", mfaRequestPage)
|
||||||
|
Loading…
Reference in New Issue
Block a user