@webbio/strapi-plugin-page-builder 0.9.18-authentication → 0.9.20-authentication

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webbio/strapi-plugin-page-builder",
3
- "version": "0.9.18-authentication",
3
+ "version": "0.9.20-authentication",
4
4
  "description": "This is the description of the plugin.",
5
5
  "scripts": {
6
6
  "develop": "tsc -p tsconfig.server.json -w",
@@ -107,9 +107,9 @@ exports.default = {
107
107
  // @ts-ignore
108
108
  data: { resetPasswordToken }
109
109
  });
110
- // @ts-ignore // TODO: remove hardcoded path
110
+ // @ts-ignore
111
111
  const searchParams = new URLSearchParams({ token: resetPasswordToken });
112
- const resetPasswordUrl = `${user.platform.domain}/ketenafspraken/reset-password/?${searchParams.toString()}`;
112
+ const resetPasswordUrl = `${user.platform.domain}/reset-password/?${searchParams.toString()}`;
113
113
  await this.sendMail({
114
114
  // @ts-ignore
115
115
  from: user.platform.platformEmails.resetPasswordMail.fromEmail,
@@ -65,7 +65,6 @@ type ResetPassword {
65
65
  exports.ResetPasswordInput = `
66
66
  input ResetPasswordInput {
67
67
  password: String!
68
- passwordConfirmation: String!
69
68
  resetPasswordToken: String!
70
69
  }
71
70
  `;