AC-684 Added new help text and adjusted credential labels. Fixed missing cloud credential name value on Jobs Detail view (job template accordion).

This commit is contained in:
Chris Houseknecht
2013-11-20 23:57:43 +00:00
parent ade961fd38
commit 0cd6e5412b
5 changed files with 76 additions and 22 deletions

View File

@@ -53,6 +53,7 @@ angular.module('AuthService', ['ngCookies', 'Utilities'])
$cookieStore.remove('token');
$cookieStore.remove('token_expires');
$cookieStore.remove('current_user');
$cookieStore.remove('lastPath');
$cookieStore.put('userLoggedIn', false);
$cookieStore.put('sessionExpired', false);
$rootScope.current_user = {};
@@ -61,6 +62,7 @@ angular.module('AuthService', ['ngCookies', 'Utilities'])
$rootScope.sessionExpired = false;
$rootScope.token = null;
$rootScope.token_expires = null;
$rootScope.lastPath = '/';
},
getLicense: function() {