2019-12-03 18:36:50 +01:00
|
|
|
class ExportJob < ApplicationJob
|
2020-09-22 17:14:31 +02:00
|
|
|
queue_as :exports
|
|
|
|
|
2021-10-04 12:57:37 +02:00
|
|
|
discard_on ActiveRecord::RecordNotFound
|
|
|
|
|
2019-12-03 18:36:50 +01:00
|
|
|
def perform(export)
|
2022-07-07 18:15:48 +02:00
|
|
|
export.compute_with_safe_stale_for_purge do
|
|
|
|
export.compute
|
|
|
|
end
|
2019-12-03 18:36:50 +01:00
|
|
|
end
|
|
|
|
end
|