Class: CanvasSync::Jobs::SyncContentMigrationsJob

Inherits:
ReportStarter show all
Defined in:
lib/canvas_sync/jobs/sync_content_migrations_job.rb

Instance Attribute Summary

Attributes inherited from CanvasSync::Job

#job_log

Instance Method Summary collapse

Methods inherited from CanvasSync::Job

#create_job_log, #report_checker_wait_time, #update_or_create_model

Instance Method Details

#perform(options) ⇒ Object

Syncs ContentMigrations

Starts a report processor for the content migrations report (the proserv_content_migrations_csv report must be enabled)

Parameters:

  • options (Hash)


10
11
12
13
14
15
16
17
# File 'lib/canvas_sync/jobs/sync_content_migrations_job.rb', line 10

def perform(options)
  super(
    "proserv_content_migrations_csv",
    merge_report_params(options),
    CanvasSync::Processors::ContentMigrationsProcessor.to_s,
    {},
  )
end