Files
edx-platform/common/djangoapps/student/signals/__init__.py
Zachary Hancock 2f2ed4d6cb feat: send course role events to the event bus (#34158)
Notify the event bus when a user's role in a course is added or removed
2024-02-13 13:16:23 -05:00

12 lines
304 B
Python

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