Sha256: c53cf31805ee60d8f28680c2f30d9d371f89807b64dc2ebf91abe6029336bd0a
Contents?: true
Size: 1.05 KB
Versions: 117
Compression:
Stored size: 1.05 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 < LiveEvents::BaseEvent 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
117 entries across 117 versions & 1 rubygems