Sha256: 208ed34338d0e8ded249d53f604c1d827a106c4b1111e6f8daf3302a4d75e07e
Contents?: true
Size: 1.06 KB
Versions: 117
Compression:
Stored size: 1.06 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 GradeEvent < LiveEvents::BaseEvent def process raise "process must be implemented in your subclass" end private def submission Submission.find_by(canvas_submission_id: local_canvas_id(payload[:submission_id])) end def assignment Assignment.find_by(canvas_assignment_id: local_canvas_id(payload[:assignment_id])) end def user User.find_by(canvas_user_id: local_canvas_id(payload[:user_id])) end end class GradeChangedEvent < LiveEvents::GradeEvent; end end
Version data entries
117 entries across 117 versions & 1 rubygems