Sha256: e603f2805a0e6ec06dd543a921dc5d0d2a95b29ee11fa2dd36b45bff909aff99
Contents?: true
Size: 1.15 KB
Versions: 25
Compression:
Stored size: 1.15 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 CourseSectionEvent < CanvasSync::LiveEvents::BaseHandler def process section = Section.where(canvas_id: local_canvas_id(payload[:course_section_id])).first_or_initialize section.sync_from_api # A section change could constitute a crosslisting change, which means # we need to make sure all our enrollments are pointing to the correct course section.enrollments.update_all(canvas_course_id: section.canvas_course_id) end end class CourseSectionCreatedEvent < LiveEvents::CourseSectionEvent; end class CourseSectionUpdatedEvent < LiveEvents::CourseSectionEvent; end end
Version data entries
25 entries across 25 versions & 1 rubygems