mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 23:28:08 +01:00
d658af7ff8
* Fix removing allowed domains being done synchronously * Add tests
9 lines
168 B
Ruby
9 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AfterUnallowDomainWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(domain)
|
|
AfterUnallowDomainService.new.call(domain)
|
|
end
|
|
end
|