Add removed user service load call; we need it

This commit is contained in:
Joseph Schorr 2015-08-10 13:35:49 -04:00
parent 4d11ff4ed5
commit 02ba1968b9

View file

@ -51,6 +51,7 @@ angular.module('quay').directive('convertUserToOrg', function () {
ApiService.convertUserToOrganization(data).then(function(resp) {
CookieService.putPermanent('quay.namespace', $scope.user.username);
UserService.load();
$location.path('/');
}, errorHandler);
};