diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-08-08 15:29:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 15:29:57 +0200 |
commit | 763ab0c7eb5430235ca8a354d11e00de1d8ba6dd (patch) | |
tree | 424b1ab20882facd51ef8e1140381b6cf56e850f /app/models | |
parent | 818e0b314fc81005dc9a73b53331f75ad52daa0d (diff) |
Fix owned account notes not being deleted when an account is deleted (#16579)
* Add account_notes relationship * Add tests * Fix owned account notes not being deleted when an account is deleted * Add post-migration to clean up orphaned account notes
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/concerns/account_interactions.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/concerns/account_interactions.rb b/app/models/concerns/account_interactions.rb index 958f6c78e..4bf62539c 100644 --- a/app/models/concerns/account_interactions.rb +++ b/app/models/concerns/account_interactions.rb @@ -81,6 +81,9 @@ module AccountInteractions has_many :following, -> { order('follows.id desc') }, through: :active_relationships, source: :target_account has_many :followers, -> { order('follows.id desc') }, through: :passive_relationships, source: :account + # Account notes + has_many :account_notes, dependent: :destroy + # Block relationships has_many :block_relationships, class_name: 'Block', foreign_key: 'account_id', dependent: :destroy has_many :blocking, -> { order('blocks.id desc') }, through: :block_relationships, source: :target_account |