Improve suspend account service
This commit is contained in:
parent
f978b06dd1
commit
2ef9f36cf2
|
@ -11,10 +11,10 @@ class RemoveStatusService < BaseService
|
||||||
|
|
||||||
status.destroy!
|
status.destroy!
|
||||||
|
|
||||||
if status.account.local?
|
return unless status.account.local?
|
||||||
HubPingWorker.perform_async(status.account.id)
|
|
||||||
Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
|
HubPingWorker.perform_async(status.account.id)
|
||||||
end
|
Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -12,8 +12,11 @@ class SuspendAccountService < BaseService
|
||||||
private
|
private
|
||||||
|
|
||||||
def purge_content
|
def purge_content
|
||||||
|
@account.statuses.find_each do |status|
|
||||||
|
RemoveStatusService.new.call(status)
|
||||||
|
end
|
||||||
|
|
||||||
@account.media_attachments.destroy_all
|
@account.media_attachments.destroy_all
|
||||||
@account.statuses.destroy_all
|
|
||||||
@account.stream_entries.destroy_all
|
@account.stream_entries.destroy_all
|
||||||
@account.mentions.destroy_all
|
@account.mentions.destroy_all
|
||||||
@account.notifications.destroy_all
|
@account.notifications.destroy_all
|
||||||
|
|
Loading…
Reference in New Issue