Make query params only read from query params, not JSON as well
This commit is contained in:
parent
ec42303750
commit
e0993b26af
4 changed files with 13 additions and 10 deletions
|
@ -2813,7 +2813,7 @@ quayApp.directive('signupForm', function () {
|
|||
$scope.registering = true;
|
||||
|
||||
if ($scope.inviteCode) {
|
||||
$scope.newUser['inviteCode'] = $scope.inviteCode;
|
||||
$scope.newUser['invite_code'] = $scope.inviteCode;
|
||||
}
|
||||
|
||||
ApiService.createNewUser($scope.newUser).then(function(resp) {
|
||||
|
|
Reference in a new issue