mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 21:53:41 +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
|