dawarich/app/jobs/import/watcher_job.rb
2025-06-02 20:53:35 +02:00

11 lines
197 B
Ruby

# frozen_string_literal: true
class Import::WatcherJob < ApplicationJob
queue_as :imports
def perform
return unless DawarichSettings.self_hosted?
Imports::Watcher.new.call
end
end