Class: Pageflow::ProcessFileJob

Inherits:
Object
  • Object
show all
Extended by:
StateMachineJob
Defined in:
app/jobs/pageflow/process_file_job.rb

Class Method Summary collapse

Class Method Details

.perform_with_result(file, _options) ⇒ Object



7
8
9
10
11
12
13
14
15
16
# File 'app/jobs/pageflow/process_file_job.rb', line 7

def self.perform_with_result(file, _options)
  file.processed_attachment = file.unprocessed_attachment
  file.save!

  :ok
rescue ActiveRecord::RecordInvalid, Errno::ENAMETOOLONG
  file.processed_attachment = nil
  file.save!
  :error
end