Skip to content
Snippets Groups Projects
Commit ab608be7 authored by ale's avatar ale
Browse files

Fix /login/ URL handling

parent 66477d1a
No related branches found
No related tags found
No related merge requests found
...@@ -261,7 +261,7 @@ func NewSAMLIDP(config *Config) (http.Handler, error) { ...@@ -261,7 +261,7 @@ func NewSAMLIDP(config *Config) (http.Handler, error) {
h := idp.Handler() h := idp.Handler()
root := mux.NewRouter() root := mux.NewRouter()
root.Handle(ssoURL.Path, w.Wrap(h, svc, nil)) root.HandlePrefix(ssoURL.Path, w.Wrap(h, svc, nil))
root.Handle(metadataURL.Path, h) root.Handle(metadataURL.Path, h)
return root, nil return root, nil
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment