Skip to content

Commit d8ed44d

Browse files
committed
feat(api): add email parameter to reset URL
1 parent 5190da4 commit d8ed44d

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

api/src/identity-access-management/domain/emails/create-warning-connection.email.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function createWarningConnectionEmail({ locale, email, firstName, validat
2727

2828
const { i18n, defaultVariables } = factory;
2929
const pixAppUrl = urlBuilder.getPixAppBaseUrl(locale);
30-
const resetUrl = `${pixAppUrl}/mot-de-passe-oublie?lang=${lang}`;
30+
const resetUrl = `${pixAppUrl}/mot-de-passe-oublie?lang=${lang}&email=${email}`;
3131

3232
return factory.buildEmail({
3333
template: mailer.warningConnectionTemplateId,

api/tests/identity-access-management/unit/domain/emails/create-warning-connection.email.test.js

+27-4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,29 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
4040
expect(variables).to.have.property('signing').that.is.a('string');
4141
});
4242

43+
it('creates warning connection email with a mail parameter in reset url', function () {
44+
// given
45+
const emailParams = {
46+
email: 'email-to-keep@example.net',
47+
locale: 'fr',
48+
firstName: 'Emile',
49+
validationToken: 'token',
50+
};
51+
52+
// when
53+
const email = createWarningConnectionEmail(emailParams);
54+
55+
// then
56+
const { helpDeskUrl, resetUrl } = email.variables;
57+
const expectedSupportUrl =
58+
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Ffr%2Fsupport';
59+
60+
const expectedResetUrl =
61+
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Demail-to-keep%40example.net';
62+
expect(resetUrl).to.equal(expectedResetUrl);
63+
expect(helpDeskUrl).to.equal(expectedSupportUrl);
64+
});
65+
4366
describe('when the locale is en', function () {
4467
it('provides the correct urls', function () {
4568
// given
@@ -59,7 +82,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
5982
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fen%2Fsupport';
6083

6184
const expectedResetUrl =
62-
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Den';
85+
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Den%26email%3Dtoto%40example.net';
6386
expect(resetUrl).to.equal(expectedResetUrl);
6487
expect(helpDeskUrl).to.equal(expectedSupportUrl);
6588
});
@@ -83,7 +106,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
83106
const expectedSupportUrl =
84107
'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.fr%2Fsupport';
85108
const expectedResetUrl =
86-
'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.fr%2Fmot-de-passe-oublie%3Flang%3Dfr';
109+
'https://test.app.pix.fr/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.fr%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%40example.net';
87110
expect(resetUrl).to.equal(expectedResetUrl);
88111
expect(helpDeskUrl).to.equal(expectedSupportUrl);
89112
});
@@ -107,7 +130,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
107130
const expectedSupportUrl =
108131
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Ffr%2Fsupport';
109132
const expectedResetUrl =
110-
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dfr';
133+
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dfr%26email%3Dtoto%40example.net';
111134
expect(resetUrl).to.equal(expectedResetUrl);
112135
expect(helpDeskUrl).to.equal(expectedSupportUrl);
113136
});
@@ -129,7 +152,7 @@ describe('Unit | Identity Access Management | Domain | Email | create-warning-co
129152
// then
130153
const { resetUrl, helpDeskUrl } = email.variables;
131154
const expectedResetUrl =
132-
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dnl';
155+
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Ftest.app.pix.org%2Fmot-de-passe-oublie%3Flang%3Dnl%26email%3Dtoto%40example.net';
133156

134157
const expectedSupportUrl =
135158
'https://test.app.pix.org/api/users/validate-email?token=token&redirect_url=https%3A%2F%2Fpix.org%2Fnl-be%2Fsupport';

0 commit comments

Comments
 (0)