You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
# frozen_string_literal: true |
|
|
|
class Vacuum::ImportsVacuum |
|
def perform |
|
clean_unconfirmed_imports! |
|
clean_old_imports! |
|
end |
|
|
|
private |
|
|
|
def clean_unconfirmed_imports! |
|
BulkImport.where(state: :unconfirmed).where('created_at <= ?', 10.minutes.ago).reorder(nil).in_batches.delete_all |
|
end |
|
|
|
def clean_old_imports! |
|
BulkImport.where('created_at <= ?', 1.week.ago).reorder(nil).in_batches.delete_all |
|
end |
|
end
|
|
|