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