dawarich/app/jobs/export_job.rb

12 lines
195 B
Ruby
Raw Permalink Normal View History

2024-06-12 14:29:38 -04:00
# frozen_string_literal: true
class ExportJob < ApplicationJob
queue_as :exports
def perform(export_id)
2024-06-12 14:29:38 -04:00
export = Export.find(export_id)
Exports::Create.new(export:).call
2024-06-12 14:29:38 -04:00
end
end