Skip to content
Snippets Groups Projects
Commit d70b4a7c authored by Florent Aide's avatar Florent Aide
Browse files

Try to use a proper url redirect instead of just the barebone window.location...

Try to use a proper url redirect instead of just the barebone window.location assignation done by OE
parent f221ce45
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,8 @@ ...@@ -57,7 +57,8 @@
}, },
on_request_loaded: function(result) { on_request_loaded: function(result) {
// redirect to the saml idp // redirect to the saml idp
instance.web.redirect(result.auth_request); //instance.web.redirect(result.auth_request);
window.location.replace(result.auth_request);
}, },
_saml_state: function(provider) { _saml_state: function(provider) {
// return the state object sent back with the redirected uri // return the state object sent back with the redirected uri
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment