about summary refs log tree commit diff
path: root/app/models/concerns/account_merging.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-12-04 02:23:51 +0100
committerGitHub <noreply@github.com>2020-12-04 02:23:51 +0100
commitfbe75192436e81b778319c597e0461d0415b5c6f (patch)
treefbe6309fd013c67d3cd38639149bf2c1bd9e5afb /app/models/concerns/account_merging.rb
parentd849aad85206bff2058fbbd9e187b0048c793cb9 (diff)
Fix account merging in maintenance script (#15264)
Also include AccountNote and AccountDeletionRequest to the list of classes
needing to be reassigned the merged account.
Diffstat (limited to 'app/models/concerns/account_merging.rb')
-rw-r--r--app/models/concerns/account_merging.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/models/concerns/account_merging.rb b/app/models/concerns/account_merging.rb
index 45050c269..c3b7018f2 100644
--- a/app/models/concerns/account_merging.rb
+++ b/app/models/concerns/account_merging.rb
@@ -15,7 +15,7 @@ module AccountMerging
       Status, StatusPin, MediaAttachment, Poll, Report, Tombstone, Favourite,
       Follow, FollowRequest, Block, Mute, AccountIdentityProof,
       AccountModerationNote, AccountPin, AccountStat, ListAccount,
-      PollVote, Mention
+      PollVote, Mention, AccountDeletionRequest, AccountNote
     ]
 
     owned_classes.each do |klass|
@@ -28,7 +28,10 @@ module AccountMerging
       end
     end
 
-    target_classes = [Follow, FollowRequest, Block, Mute, AccountModerationNote, AccountPin]
+    target_classes = [
+      Follow, FollowRequest, Block, Mute, AccountModerationNote, AccountPin,
+      AccountNote
+    ]
 
     target_classes.each do |klass|
       klass.where(target_account_id: other_account.id).find_each do |record|