mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 20:15:10 +01:00
Remove custom emojis on domain purge (#17210)
This commit is contained in:
parent
37e80994f8
commit
d3db2eb7fb
@ -5,6 +5,7 @@ class PurgeDomainService < BaseService
|
|||||||
Account.remote.where(domain: domain).reorder(nil).find_each do |account|
|
Account.remote.where(domain: domain).reorder(nil).find_each do |account|
|
||||||
DeleteAccountService.new.call(account, reserve_username: false, skip_side_effects: true)
|
DeleteAccountService.new.call(account, reserve_username: false, skip_side_effects: true)
|
||||||
end
|
end
|
||||||
|
CustomEmoji.remote.where(domain: domain).reorder(nil).find_each(&:destroy)
|
||||||
Instance.refresh
|
Instance.refresh
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user