Sha256: 4f1fa76936d4402a2f0492880b6a4ff04c29f3628ce223657e4181141e5aa8e5
Contents?: true
Size: 1.11 KB
Versions: 117
Compression:
Stored size: 1.11 KB
Contents
# # # AUTO GENERATED LIVE EVENT # This was auto generated by the CanvasSync Gem. # You can customize it as needed, but make sure you test # any changes you make to the auto generated methods. # # LiveEvent message formats can be found at https://canvas.instructure.com/doc/api/file.live_events.html # In the general case, LiveEvent message content should not be trusted - it is highly possible that events may # arrive out of order. Most of the CanvasSync LiveEvent templates solve this by always fetching the object from the API. # module LiveEvents class SubmissionEvent < LiveEvents::BaseEvent def process submission = Submission.where(canvas_id: local_canvas_id(payload["submission_id"])).first_or_initialize submission.canvas_assignment_id = local_canvas_id(payload["assignment_id"]) submission.canvas_user_id = local_canvas_id(payload["user_id"]) submission.canvas_course_id = submission.assignment.context.canvas_id submission.sync_from_api end end class SubmissionCreatedEvent < LiveEvents::SubmissionEvent; end class SubmissionUpdatedEvent < LiveEvents::SubmissionEvent; end end
Version data entries
117 entries across 117 versions & 1 rubygems