bced70469a
* Add database columns for adding notes to domain blocks/restrctions * Add admin UI to set private and public comments when blocking a domain * Add text for private and public comments on domain blocks * Show domain block comments in admin UI * Add comments to the domain block undo page * Make UnblockDomainService more robust regarding upgraded domain blocks * Allow editing domain blocks * Rename button from “undo domain block” to “view domain block” in account admin UI * Change test to unsilence silenced users from upgraded blocks
11 lines
261 B
Ruby
11 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DomainBlockWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(domain_block_id, update = false)
|
|
BlockDomainService.new.call(DomainBlock.find(domain_block_id), update)
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|