From 5aa57707912d1639f556445bf12184adae148725 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 25 Apr 2022 16:10:59 +0100 Subject: [PATCH] Renamed `/passwordreset` authentication API endpoint to `/password_reset` refs https://github.com/TryGhost/Toolbox/issues/308 - we have a pattern of splitting words via an underscore in the API, so v5 splits apart `passwordreset` to `password_reset` - I'll follow up whether we want to fixup the `passwordreset` body object --- ghost/admin/app/controllers/reset.js | 2 +- ghost/admin/app/controllers/signin.js | 2 +- ghost/admin/mirage/config/authentication.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ghost/admin/app/controllers/reset.js b/ghost/admin/app/controllers/reset.js index 42b7e6444f..9af50283b8 100644 --- a/ghost/admin/app/controllers/reset.js +++ b/ghost/admin/app/controllers/reset.js @@ -42,7 +42,7 @@ export default Controller.extend(ValidationEngine, { resetPassword: task(function* () { let credentials = this.getProperties('newPassword', 'ne2Password', 'token'); - let authUrl = this.get('ghostPaths.url').api('authentication', 'passwordreset'); + let authUrl = this.get('ghostPaths.url').api('authentication', 'password_reset'); this.set('flowErrors', ''); this.hasValidated.addObjects(['newPassword', 'ne2Password']); diff --git a/ghost/admin/app/controllers/signin.js b/ghost/admin/app/controllers/signin.js index 5454c1ae41..03718d61b0 100644 --- a/ghost/admin/app/controllers/signin.js +++ b/ghost/admin/app/controllers/signin.js @@ -114,7 +114,7 @@ export default class SigninController extends Controller.extend(ValidationEngine @task(function* () { let email = this.get('signin.identification'); - let forgottenUrl = this.get('ghostPaths.url').api('authentication', 'passwordreset'); + let forgottenUrl = this.get('ghostPaths.url').api('authentication', 'password_reset'); let notifications = this.notifications; this.set('flowErrors', ''); diff --git a/ghost/admin/mirage/config/authentication.js b/ghost/admin/mirage/config/authentication.js index a0279f69c7..c63d8d7963 100644 --- a/ghost/admin/mirage/config/authentication.js +++ b/ghost/admin/mirage/config/authentication.js @@ -9,7 +9,7 @@ export default function mockAuthentication(server) { return new Response(201); }); - server.post('/authentication/passwordreset', function (schema, request) { + server.post('/authentication/password_reset', function (schema, request) { let {passwordreset} = JSON.parse(request.requestBody); let email = passwordreset[0].email;