mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-08 10:45:22 +01:00
7f803c41e2
* Add ability to purge undeliverable domains from admin interface * Add tests
9 lines
161 B
Ruby
9 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::DomainPurgeWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(domain)
|
|
PurgeDomainService.new.call(domain)
|
|
end
|
|
end
|