Files
edx-platform/common/djangoapps/student/signals/__init__.py
Waheed Ahmad 541065c542 fix: [VAN-980] changing the email address sync with Braze (#30590)
Currently, changing the email address in LMS does not reflect in Braze
and the transaction emails sent through Braze are delivering to user's
old/previous email address.

Added a signal/receiver to sync the new email address upon confirm email
change.
2022-06-15 19:39:23 +05:00

10 lines
232 B
Python

# lint-amnesty, pylint: disable=missing-module-docstring
from common.djangoapps.student.signals.signals import (
ENROLL_STATUS_CHANGE,
ENROLLMENT_TRACK_UPDATED,
REFUND_ORDER,
UNENROLL_DONE,
USER_EMAIL_CHANGED
)