use relative oauth2 path redirect to support subpath proxy deployments

This commit is contained in:
Gani Georgiev 2023-04-25 18:29:36 +03:00
parent 0478f84867
commit a5b3cc0f34
1 changed files with 1 additions and 1 deletions

View File

@ -668,5 +668,5 @@ func (api *recordAuthApi) oauth2SubscriptionRedirect(c echo.Context) error {
client.Channel() <- msg
return c.Redirect(http.StatusTemporaryRedirect, "/_/#/auth/oauth2-redirect")
return c.Redirect(http.StatusTemporaryRedirect, "../_/#/auth/oauth2-redirect")
}