Sha256: deeb4729000380db0455975e46fb0c07807bab4bd01586f339bd5991f90ce9c6
Contents?: true
Size: 540 Bytes
Versions: 69
Compression:
Stored size: 540 Bytes
Contents
require_relative "./report_processor" module CanvasSync module Processors # Processes a content migrations report using the bulk importer. # # @param report_file_path [String] # @param options [Hash] class ContentMigrationsProcessor < ReportProcessor def self.process(report_file_path, _options, report_id) new(report_file_path, _options) end def initialize(report_file_path, options) do_bulk_import(report_file_path, ContentMigration, options: options) end end end end
Version data entries
69 entries across 69 versions & 1 rubygems