mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 23:28:08 +01:00
24 lines
375 B
Ruby
24 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
|