Files
timeoverflow/app/services/report/csv/transfer.rb
Marc Anguera Insa ea4f9deb70 add Transfers report
2021-03-13 01:05:25 +01:00

10 lines
191 B
Ruby

module Report
module Csv
class Transfer < Base
def initialize(org, collection)
self.decorator = Report::TransferDecorator.new(org, collection)
end
end
end
end