@webbio/strapi-plugin-page-builder 0.12.5-platform → 0.12.7-platform

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.12.5-platform",
3
+ "version": "0.12.7-platform",
4
4
  "description": "This is the description of the plugin.",
5
5
  "scripts": {
6
6
  "develop": "tsc -p tsconfig.server.json -w",
@@ -111,8 +111,7 @@ exports.default = {
111
111
  data: { resetPasswordToken }
112
112
  });
113
113
  // @ts-ignore
114
- const searchParams = new URLSearchParams({ token: resetPasswordToken });
115
- const resetPasswordUrl = `${user.platform.domain}/wachtwoord-resetten/?${searchParams.toString()}`;
114
+ const resetPasswordUrl = `${user.platform.domain}/wachtwoord-resetten/${resetPasswordToken}`;
116
115
  await this.sendMail({
117
116
  // @ts-ignore
118
117
  from: user.platform.platformEmails.resetPasswordMail.fromEmail,