You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/app/lib/vacuum/imports_vacuum.rb

25 lines
375 B
Ruby

# frozen_string_literal: true
class Vacuum::ImportsVacuum
def perform
clean_unconfirmed_imports!
clean_old_imports!
end
private
def clean_unconfirmed_imports!
BulkImport
.confirmation_missed
.in_batches
.delete_all
end
def clean_old_imports!
BulkImport
.archival_completed
.in_batches
.delete_all
end
end