This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-17 14:01:21 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::DomainPurgeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2022-03-08 23:52:32 -08:00
|
|
|
sidekiq_options queue: 'pull', lock: :until_executed
|
|
|
|
|
2021-12-17 14:01:21 -08:00
|
|
|
def perform(domain)
|
|
|
|
PurgeDomainService.new.call(domain)
|
|
|
|
end
|
|
|
|
end
|