1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 06:03:49 -05:00
2021-12-30 08:41:09 +01:00

12 lines
379 B
Ruby

# frozen_string_literal: true
class PurgeDomainService < BaseService
def call(domain)
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