diff options
author | Claire <claire.github-309c@sitedethib.com> | 2020-12-21 18:28:23 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2020-12-21 18:28:23 +0100 |
commit | 38bfaf885543f349e88bb18edbc3536cefc0701c (patch) | |
tree | 8cd8f0b68c26bb46e14b20484b828df1159363a5 /app/services | |
parent | 61d5744dcc33d4cfdd26a38af138a4a416a93868 (diff) | |
parent | 43961035a906cd8bccdf4c1ac023980b37823bb3 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/batched_remove_status_service.rb | 3 | ||||
-rw-r--r-- | app/services/delete_account_service.rb | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/app/services/batched_remove_status_service.rb b/app/services/batched_remove_status_service.rb index 707672ee0..e083234ae 100644 --- a/app/services/batched_remove_status_service.rb +++ b/app/services/batched_remove_status_service.rb @@ -4,8 +4,6 @@ class BatchedRemoveStatusService < BaseService include Redisable # Delete given statuses and reblogs of them - # Dispatch PuSH updates of the deleted statuses, but only local ones - # Dispatch Salmon deletes, unique per domain, of the deleted statuses, but only local ones # Remove statuses from home feeds # Push delete events to streaming API for home feeds and public feeds # @param [Enumerable<Status>] statuses A preferably batched array of statuses @@ -19,7 +17,6 @@ class BatchedRemoveStatusService < BaseService @json_payloads = statuses.each_with_object({}) { |s, h| h[s.id] = Oj.dump(event: :delete, payload: s.id.to_s) } - # Ensure that rendered XML reflects destroyed state statuses.each do |status| status.mark_for_mass_destruction! status.destroy diff --git a/app/services/delete_account_service.rb b/app/services/delete_account_service.rb index 9cb80c95a..fa834e775 100644 --- a/app/services/delete_account_service.rb +++ b/app/services/delete_account_service.rb @@ -122,7 +122,11 @@ class DeleteAccountService < BaseService @account.polls.reorder(nil).find_each do |poll| next if @options[:reserve_username] && reported_status_ids.include?(poll.status_id) - poll.destroy + # We can safely delete the poll rather than destroy it, as any non-reported + # status should have been deleted already, as long as we take care of + # notifications. + Notification.where(poll: poll).delete_all + poll.delete end associations_for_destruction.each do |association_name| |