fix login redirect

This commit is contained in:
Niko Abeler 2023-07-27 21:19:52 +02:00
parent 7ead1ffe22
commit e998272f81
1 changed files with 1 additions and 1 deletions

View File

@ -52,6 +52,6 @@ func (h *LoginHandler) HandlePost(c *fiber.Ctx) error {
}
c.Cookie(&cookie)
return c.Redirect("/editor/")
return c.Redirect("/admin/")
}