From 8279ba2756af702f86f55880c79e2fe702d8ef29 Mon Sep 17 00:00:00 2001 From: muhammadadeeltajamul Date: Mon, 13 Jan 2025 11:40:40 +0500 Subject: [PATCH] chore: updated notification preference url in email digest --- openedx/core/djangoapps/notifications/email/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/notifications/email/utils.py b/openedx/core/djangoapps/notifications/email/utils.py index 34c245308785..ad8b8b85dfd8 100644 --- a/openedx/core/djangoapps/notifications/email/utils.py +++ b/openedx/core/djangoapps/notifications/email/utils.py @@ -100,7 +100,7 @@ def create_email_template_context(username): "mailing_address": settings.CONTACT_MAILING_ADDRESS, "logo_url": get_logo_url_for_email(), "social_media": social_media_info, - "notification_settings_url": f"{settings.ACCOUNT_MICROFRONTEND_URL}/notifications", + "notification_settings_url": f"{settings.ACCOUNT_MICROFRONTEND_URL}/#notifications", "unsubscribe_url": get_unsubscribe_link(username, patch) }