Sha256: 684c101ad12c93c6cb36ec65a61ff8f8333b79d994405762cd792464545128d7
Contents?: true
Size: 1.06 KB
Versions: 25
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 CourseEvent < CanvasSync::LiveEvents::BaseHandler def process course = Course.where(canvas_id: local_canvas_id(payload[:course_id])).first_or_initialize course.canvas_account_id = local_canvas_id(payload[:account_id]) if course.account.nil? acc = Account.new(canvas_id: course.canvas_account_id) acc.sync_from_api end course.sync_from_api end end class CourseCreatedEvent < LiveEvents::CourseEvent; end class CourseUpdatedEvent < LiveEvents::CourseEvent; end end
Version data entries
25 entries across 25 versions & 1 rubygems