From 41873ebfe52d9474eb02100d98d0238f375ed2a4 Mon Sep 17 00:00:00 2001 From: moanos Date: Tue, 12 Aug 2025 17:17:35 +0200 Subject: [PATCH] fix: Send actually new user notification --- src/fellchensammlung/tools/model_helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fellchensammlung/tools/model_helpers.py b/src/fellchensammlung/tools/model_helpers.py index ca85485..4c12fe9 100644 --- a/src/fellchensammlung/tools/model_helpers.py +++ b/src/fellchensammlung/tools/model_helpers.py @@ -30,8 +30,8 @@ report_mapping = NotificationDisplayMapping( ) # ndm = notification display mapping ndm = {NotificationTypeChoices.NEW_USER: NotificationDisplayMapping( - email_html_template='fellchensammlung/mail/notifications/report.html', - email_plain_template="fellchensammlung/mail/notifications/report.txt", + email_html_template='fellchensammlung/mail/notifications/new-user.html', + email_plain_template="fellchensammlung/mail/notifications/new-user.txt", web_partial="fellchensammlung/partials/notifications/body-new-user.html"), NotificationTypeChoices.NEW_COMMENT: NotificationDisplayMapping( email_html_template='fellchensammlung/mail/notifications/new-comment.html',