Sha256: 857e088a30b3a67892767fd0729c58ea394f30fa3e954d2e6ab6dcbb58be35df
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 CourseEvent < LiveEvents::BaseEvent 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
117 entries across 117 versions & 1 rubygems