0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

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
This commit is contained in:
Daniel Lockyer 2022-04-25 16:10:59 +01:00
parent bc6ce7a2dd
commit 5aa5770791
3 changed files with 3 additions and 3 deletions

View file

@ -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']);

View file

@ -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', '');

View file

@ -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;