Commit 3f26c16ab4ae0cbc3970f0a527257c6544004985
Exists in
master
and in
4 other branches
Merge branch 'fix-101'
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/components/auth/auth.service.js
... | ... | @@ -119,7 +119,7 @@ |
119 | 119 | encodedData += '&password_confirmation=' + data.newPasswordConfirmation; |
120 | 120 | |
121 | 121 | return $http |
122 | - .patch(url, encodedData) | |
122 | + .patch(url + '?' + encodedData) | |
123 | 123 | .then(function(response) { |
124 | 124 | $log.debug('AuthService.changePassword [SUCCESS] response', response); |
125 | 125 | ... | ... |