Sha256: b1ea233b1e6d10c2efedeff6fb898758782734d835cf0960c4b64e158854bdb7
Contents?: true
Size: 618 Bytes
Versions: 18
Compression:
Stored size: 618 Bytes
Contents
module CanvasSync module Jobs class SyncSubmissionsJob < ReportStarter # Syncs Submissions # # Starts a report processor for the submission report # (the proserv_student_submissions_csv report must be enabled) # # @param options [Hash] def perform(options) super( "proserv_student_submissions_csv", merge_report_params(options, { include_all: options[:include_all], enrollment_batch_size: options[:enrollment_batch_size] }, {}), CanvasSync::Processors::SubmissionsProcessor.to_s, {}, ) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems