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