Compare commits

..

2 Commits

Author SHA1 Message Date
5ff6f77daf Merge pull request 'Now base64-encoding the selfservice tokens👀' (#12) from bugfix/11-selfservice_profile_link into dev
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #12
2021-03-31 17:45:59 +00:00
1f581650c5 Now base64-encoding the selfservice tokens👀
All checks were successful
continuous-integration/drone/pr Build is passing
ref #11
2021-03-31 19:44:37 +02:00

View File

@ -126,6 +126,7 @@ export class Mailer {
*/
public async sendWelcomeMail(to_address: string, token: string, locale: string = "en") {
await i18next.changeLanguage(locale);
token = Buffer.from(token).toString("base64");
const replacements = {
recipient_mail: to_address,
@ -159,6 +160,7 @@ export class Mailer {
*/
public async sendSelfserviceForgottenMail(to_address: string, token: string, locale: string = "en") {
await i18next.changeLanguage(locale);
token = Buffer.from(token).toString("base64");
const replacements = {
recipient_mail: to_address,