Merge pull request #952 from pedroigor/master

[KEYCKOAK-883] - Adding idpHint config option when configuring login url.
This commit is contained in:
Pedro Igor 2015-02-08 20:53:29 -02:00
commit 916ba57c40

View file

@ -137,6 +137,10 @@
url += '&login_hint=' + options.loginHint;
}
if (options && options.idpHint) {
url += '&k_idp_hint=' + options.idpHint;
}
return url;
}