Class: Railspress::ExportPostsJob
- Inherits:
-
ApplicationJob
- Object
- ActiveJob::Base
- ApplicationJob
- Railspress::ExportPostsJob
- Defined in:
- app/jobs/railspress/export_posts_job.rb
Instance Method Summary collapse
Instance Method Details
#perform(export_id) ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'app/jobs/railspress/export_posts_job.rb', line 5 def perform(export_id) export = Export.find(export_id) processor = PostExportProcessor.new(export: export) processor.process! rescue => e export.add_error("Export failed: #{e.}") export.mark_failed! raise end |