Sha256: a713cfb4d5068b172a43d741574c578713c353ddfe585ab09ae29c71b14631bd
Contents?: true
Size: 537 Bytes
Versions: 81
Compression:
Stored size: 537 Bytes
Contents
require_relative "./report_processor" module CanvasSync module Processors # Processes a assignment_groups report using the bulk importer. # # @param report_file_path [String] # @param options [Hash] class AssignmentGroupsProcessor < 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, AssignmentGroup, options: options) end end end end
Version data entries
81 entries across 81 versions & 1 rubygems