Class: Bulkrax::ExporterJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/bulkrax/exporter_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(exporter_id) ⇒ Object



7
8
9
10
11
12
13
# File 'app/jobs/bulkrax/exporter_job.rb', line 7

def perform(exporter_id)
  exporter = Exporter.find(exporter_id)
  exporter.export
  exporter.write
  exporter.save
  true
end