Class: LiveEvents::CourseEvent
- Inherits:
-
BaseEvent
- Object
- ActiveJob::Base
- CanvasSync::Job
- BaseEvent
- LiveEvents::CourseEvent
- Defined in:
- lib/canvas_sync/generators/templates/services/live_events/course_event.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from BaseEvent
#metadata, #payload, #raw_payload
Attributes inherited from CanvasSync::Job
Instance Method Summary collapse
Methods inherited from BaseEvent
Methods inherited from CanvasSync::Job
#create_job_log, #report_checker_wait_time, #update_or_create_model
Instance Method Details
#process ⇒ Object
6 7 8 9 10 11 12 13 14 |
# File 'lib/canvas_sync/generators/templates/services/live_events/course_event.rb', line 6 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 |