2024-06-04 19:48:30 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class E621PoolImportJob < ApplicationJob
|
2024-10-24 08:07:27 +00:00
|
|
|
queue_as :exports
|
2024-06-04 19:48:30 +00:00
|
|
|
|
|
|
|
def perform
|
|
|
|
PoolIndex.create_index!(delete_existing: true)
|
|
|
|
PoolIndex.import!
|
|
|
|
end
|
|
|
|
end
|