From 0e4d9138e32d6c586d5167588dc92a0fade832e9 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Thu, 19 Oct 2023 08:29:23 +0200 Subject: [PATCH] Rename email verification callback option --- wger/settings_global.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wger/settings_global.py b/wger/settings_global.py index 89746e769..ec92e6279 100644 --- a/wger/settings_global.py +++ b/wger/settings_global.py @@ -551,7 +551,7 @@ def email_verified_callback(user): user.userprofile.save() -EMAIL_VERIFIED_CALLBACK = email_verified_callback +EMAIL_MAIL_CALLBACK = email_verified_callback EMAIL_FROM_ADDRESS = WGER_SETTINGS['EMAIL_FROM'] EMAIL_MAIL_SUBJECT = 'Confirm your email' EMAIL_MAIL_HTML = 'email_verification/email_body_html.tpl' @@ -561,7 +561,7 @@ def email_verified_callback(user): EMAIL_PAGE_DOMAIN = 'http://localhost:8000/' # -# Django activity stream +# Django-activity stream # ACTSTREAM_SETTINGS = { 'USE_JSONFIELD': True,