mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-22 10:33:48 -05:00
10 lines
161 B
Ruby
10 lines
161 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::DomainPurgeWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform(domain)
|
||
|
PurgeDomainService.new.call(domain)
|
||
|
end
|
||
|
end
|