Sha256: 537833f9baef92987dee61cda3b968ea9664519aef8ef786428507f7ff579f79
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 SyllabusEvent < CanvasSync::LiveEvents::BaseHandler def process # syllabus = Syllabus.where(course_id: attrs[:course_id]).first_or_initialize # syllabus.body = attrs[:syllabus_body] # Syllabus Body can get truncated by live events # syllabus.save! raise "process must be implemented in your subclass" end private def course Course.find_by(canvas_course_id: local_canvas_id(payload[:course_id])) end end class SyllabusUpdatedEvent < LiveEvents::SyllabusEvent; end end
Version data entries
25 entries across 25 versions & 1 rubygems