Show user's name upon successful login

This commit is contained in:
Francis Lachapelle
2016-08-31 14:32:30 -04:00
parent c2a0994aed
commit ab4118fb29
5 changed files with 8 additions and 6 deletions
@@ -120,7 +120,7 @@
//showPasswordDialog('expiration', createPasswordExpirationDialog, data['expire']);
}
else {
d.resolve(redirectUrl(username, domain));
d.resolve({ cn: data.cn, url: redirectUrl(username, domain) });
}
}
else {
+4 -3
View File
@@ -25,15 +25,16 @@
function login() {
vm.loginState = 'authenticating';
Authentication.login(vm.creds)
.then(function(url) {
.then(function(data) {
vm.loginState = 'logged';
vm.cn = data.cn;
// Let the user see the succesfull message before reloading the page
$timeout(function() {
if (window.location.href === url)
if (window.location.href === data.url)
window.location.reload(true);
else
window.location.href = url;
window.location.href = data.url;
}, 1000);
}, function(msg) {
vm.loginState = 'error';