1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-02 22:41:42 -05:00
tootlab-mastodon/app/workers/after_unallow_domain_worker.rb

10 lines
168 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AfterUnallowDomainWorker
include Sidekiq::Worker
def perform(domain)
AfterUnallowDomainService.new.call(domain)
end
end