Sha256: 08ace2f309331cfe8ea8f4dd4188550e265b2e515d5bb28127d827f4aea99892
Contents?: true
Size: 1.13 KB
Versions: 117
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 CourseSectionEvent < LiveEvents::BaseEvent 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
117 entries across 117 versions & 1 rubygems