1
0
mirror of https://github.com/whippyshou/mastodon synced 2025-01-22 01:34:23 +09:00
whippy-edition/app/workers/admin/domain_purge_worker.rb

10 lines
161 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Admin::DomainPurgeWorker
include Sidekiq::Worker
def perform(domain)
PurgeDomainService.new.call(domain)
end
end