mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-06 06:56:22 +00:00
7f803c41e2
* Add ability to purge undeliverable domains from admin interface * Add tests
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
|