Sha256: 88911f21b31580195672fd3e9708600ea86a5b7904ab4da5882149833a8cb102
Contents?: true
Size: 930 Bytes
Versions: 25
Compression:
Stored size: 930 Bytes
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 ModuleItemEvent < CanvasSync::LiveEvents::BaseHandler def process context_module_item = ContextModuleItem.find_or_initialize_by(canvas_id: payload["module_item_id"]) context_module_item.sync_from_api end end class ModuleItemCreatedEvent < LiveEvents::ModuleItemEvent; end class ModuleItemUpdatedEvent < LiveEvents::ModuleItemEvent; end end
Version data entries
25 entries across 25 versions & 1 rubygems