Skip to content

Commit

Permalink
feat: add Open edX signal definitions V1
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed Jun 9, 2021
1 parent 5eb16c4 commit bb7d207
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions openedx_events/learning/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,77 @@
They also must comply with the payload definition specified in
docs/decisions/0003-events-payload.rst
"""

from openedx_events.learning.data import (
CertificateData,
CohortData,
CourseEnrollmentData,
RegistrationData,
StudentData,
)
from openedx_events.tooling import OpenEdxPublicSignal

STUDENT_REGISTRATION_COMPLETED = OpenEdxPublicSignal(
event_type="org.openedx.learning.student.registration.completed.v1",
data={
"user": StudentData,
"registration": RegistrationData,
}
)


SESSION_LOGIN_COMPLETED = OpenEdxPublicSignal(
event_type="org.openedx.learning.student.registration.completed.v1",
data={
"user": StudentData,
"registration": RegistrationData,
}
)


COURSE_ENROLLMENT_CREATED = OpenEdxPublicSignal(
event_type="org.openedx.learning.course.enrollment.created.v1",
data={
"enrollment": CourseEnrollmentData,
}
)


COURSE_ENROLLMENT_CHANGED = OpenEdxPublicSignal(
event_type="org.openedx.learning.course.enrollment.changed.v1",
data={
"enrollment": CourseEnrollmentData,
}
)


COURSE_ENROLLMENT_DEACTIVATED = OpenEdxPublicSignal(
event_type="org.openedx.learning.course.enrollment.deactivated.v1",
data={
"enrollment": CourseEnrollmentData,
}
)


CERTIFICATE_CREATED = OpenEdxPublicSignal(
event_type="org.openedx.learning.certificate.created.v1",
data={
"certificate": CertificateData,
}
)


CERTIFICATE_CHANGED = OpenEdxPublicSignal(
event_type="org.openedx.learning.certificate.changed.v1",
data={
"certificate": CertificateData,
}
)


COHORT_MEMBERSHIP_CHANGED = OpenEdxPublicSignal(
event_type="org.openedx.learning.cohort_membership.changed.v1",
data={
"cohort": CohortData,
}
)

0 comments on commit bb7d207

Please sign in to comment.