Mail: remove usage of non-existent config property

This commit is contained in:
Alice Gaudon 2020-11-04 12:11:16 +01:00
parent f15535dda9
commit 570a831172
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ export const ACCOUNT_REVIEW_NOTICE_MAIL_TEMPLATE: MailTemplate = new MailTemplat
export const PENDING_ACCOUNT_REVIEW_MAIL_TEMPLATE: MailTemplate = new MailTemplate(
'pending_account_review',
() => 'A new account is pending review on ' + config.get<string>('domain'),
() => 'A new account is pending review on ' + config.get<string>('app.name'),
);