1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-01 17:38:37 +00:00

OIDC: Redirect to user home page after successful authentication

This commit is contained in:
Frédéric Guillot 2023-11-07 19:29:19 +00:00
parent 00a64710c2
commit bc317cfcd1
2 changed files with 2 additions and 2 deletions

View file

@ -257,6 +257,6 @@ func (m *middleware) handleAuthProxy(next http.Handler) http.Handler {
config.Opts.BasePath(),
))
html.Redirect(w, r, route.Path(m.router, "unread"))
html.Redirect(w, r, route.Path(m.router, user.DefaultHomePage))
})
}