2024-10-03 09:08:23 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
class Import::WatcherJob < ApplicationJob
|
|
|
|
|
queue_as :imports
|
|
|
|
|
|
|
|
|
|
def perform
|
2025-04-03 12:41:05 -04:00
|
|
|
return unless DawarichSettings.self_hosted?
|
|
|
|
|
|
2024-10-03 09:08:23 -04:00
|
|
|
Imports::Watcher.new.call
|
|
|
|
|
end
|
|
|
|
|
end
|