Remove custom emojis on domain purge (#17210)

lolsob-rspec
Jeong Arm 2021-12-30 16:41:09 +09:00 committed by GitHub
parent 651e997a98
commit db10cd8d15
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ class PurgeDomainService < BaseService
Account.remote.where(domain: domain).reorder(nil).find_each do |account|
DeleteAccountService.new.call(account, reserve_username: false, skip_side_effects: true)
end
CustomEmoji.remote.where(domain: domain).reorder(nil).find_each(&:destroy)
Instance.refresh
end
end