Use ApiService to get error message

This commit is contained in:
Evan Cordell 2016-04-11 17:28:49 -04:00
parent b5db41920f
commit 7c361c07f9
5 changed files with 8 additions and 4 deletions

View file

@ -46,7 +46,7 @@ angular.module('quay').directive('signupForm', function () {
UserService.load();
}, function(result) {
$scope.registering = false;
UIService.showFormError('#signupButton', result);
UIService.showFormError('#signupButton', result, null, ApiService);
});
};
}