JS SDK no longer does redirect for us, get the URL and update browser window location
parent
a7c53e99d9
commit
fec362c4df
|
@ -26,7 +26,8 @@ module.exports = {
|
||||||
var parsedUrl = url.parse(window.location.href, true);
|
var parsedUrl = url.parse(window.location.href, true);
|
||||||
parsedUrl.query["homeserver"] = cli.getHomeserverUrl();
|
parsedUrl.query["homeserver"] = cli.getHomeserverUrl();
|
||||||
parsedUrl.query["identityServer"] = cli.getIdentityServerUrl();
|
parsedUrl.query["identityServer"] = cli.getIdentityServerUrl();
|
||||||
MatrixClientPeg.get().loginWithCas(url.format(parsedUrl));
|
var casUrl = MatrixClientPeg.get().getCasLoginUrl(url.format(parsedUrl));
|
||||||
|
window.location.href = casUrl;
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue