Merge pull request #342 from coreos-inc/orgconvert

Add removed user service load call; we need it
This commit is contained in:
Jimmy Zelinskie 2015-08-10 13:36:29 -04:00
commit 562bdc6a76

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);
};