Skip to content

Commit 1a7a763

Browse files
committed
Correctly use POST request to reset password
closes #6423
1 parent 6fd4e43 commit 1a7a763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/client/app/controllers/signin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default Controller.extend(ValidationEngine, {
8484
let forgottenUrl = this.get('ghostPaths.url').api('authentication', 'passwordreset');
8585
this.toggleProperty('submitting');
8686

87-
this.get('ajax').put(forgottenUrl, {
87+
this.get('ajax').post(forgottenUrl, {
8888
data: {
8989
passwordreset: [{email}]
9090
}

0 commit comments

Comments
 (0)