fix(handler/sso/proxy): proxy frontchannel logouts

This commit is contained in:
Trong Huu Nguyen
2023-04-29 08:55:14 +02:00
parent ab2a8b6fec
commit 87ffee4a34

View File

@@ -148,7 +148,8 @@ func (s *SSOProxy) LogoutCallback(w http.ResponseWriter, r *http.Request) {
}
func (s *SSOProxy) LogoutFrontChannel(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
r.URL.Path = paths.OAuth2 + paths.LogoutFrontChannel
s.SSOServerReverseProxy.ServeHTTP(w, r)
}
func (s *SSOProxy) LogoutLocal(w http.ResponseWriter, r *http.Request) {