Sha256: dd8d47326ef16d43d466ffb5f65f7b32150a363472479ad7f13ac846dbfea291
Contents?: true
Size: 1.13 KB
Versions: 25
Compression:
Stored size: 1.13 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 < CanvasSync::LiveEvents::BaseHandler 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
25 entries across 25 versions & 1 rubygems