Skip to content

Commit

Permalink
feat: add event to unserializable signals
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Feb 5, 2024
1 parent e0e9c0c commit a3c46eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openedx_events/learning/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,4 +505,4 @@ class ORASubmissionData:
"""

id = attr.ib(type=str)
file_downloads = attr.ib(type=List[dict])
file_downloads = attr.ib(type=List[dict], factory=list)
2 changes: 1 addition & 1 deletion openedx_events/learning/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
DiscussionThreadData,
ExamAttemptData,
ManageStudentsPermissionData,
ORASubmissionData,
PersistentCourseGradeData,
ProgramCertificateData,
UserData,
UserNotificationData,
XBlockSkillVerificationData,
ORASubmissionData,
)
from openedx_events.tooling import OpenEdxPublicSignal

Expand Down
1 change: 1 addition & 0 deletions openedx_events/tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"org.openedx.learning.response.created.v1",
"org.openedx.learning.comment.created.v1",
"org.openedx.learning.course.notification.requested.v1",
"org.openedx.learning.ora.submission.created.v1",
]


Expand Down

0 comments on commit a3c46eb

Please sign in to comment.