8 lines
115 B
Ruby
8 lines
115 B
Ruby
|
class PurgeStaleExportsJob < ApplicationJob
|
||
|
queue_as :cron
|
||
|
|
||
|
def perform
|
||
|
Export.stale.destroy_all
|
||
|
end
|
||
|
end
|