Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • web-et-numerique/web-et-numerique-internet/data.grandlyon.com/web-portal/components/middlewares/legacy-auth
1 result
Show changes
Commits on Source (2)
......@@ -520,4 +520,5 @@ export class Email {
to: string[];
subject: string;
html: string; // As html
}
\ No newline at end of file
replyTo?: string; //optional
}
......@@ -543,6 +543,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
replyTo: token.email,
to: [this.conf.userSupportMailbox],
subject: 'Demande d’accès aux données',
}),
......@@ -643,6 +644,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
replyTo: token.email,
to: [this.conf.userSupportMailbox],
subject: 'Demande de renouvellement d’accès aux données',
}),
......@@ -747,6 +749,7 @@ export class LegacyService {
await Promise.all([
this.sendEmail({
html: adminEmail,
replyTo: token.email,
to: [this.conf.userSupportMailbox],
subject: 'Demande de suppression d’accès aux données',
}),
......@@ -834,4 +837,4 @@ export class LegacyService {
handleError(error, new InternalServerErrorException('Couldn\'t send email.'));
}
}
}
\ No newline at end of file
}