Method: BulkImports::FileExportService#initialize

Defined in:
app/services/bulk_imports/file_export_service.rb

#initialize(portable, export_path, relation, user) ⇒ FileExportService

Returns a new instance of FileExportService.



12
13
14
15
16
17
# File 'app/services/bulk_imports/file_export_service.rb', line 12

def initialize(portable, export_path, relation, user)
  @portable = portable
  @export_path = export_path
  @relation = relation
  @user = user # not used anywhere in this class at the moment
end