From: Eugen Rochko Date: Thu, 9 Aug 2018 13:24:29 +0000 (+0200) Subject: When follow is removed, remove endorsement (#8149) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=aff6a15061de203842653d680047322277dc7af6;p=mastodon.git When follow is removed, remove endorsement (#8149) --- diff --git a/app/models/follow.rb b/app/models/follow.rb index eaf8445f3..3fce14b9a 100644 --- a/app/models/follow.rb +++ b/app/models/follow.rb @@ -33,10 +33,15 @@ class Follow < ApplicationRecord end before_validation :set_uri, only: :create + after_destroy :remove_endorsements private def set_uri self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil? end + + def remove_endorsements + AccountPin.where(target_account_id: target_account_id, account_id: account_id).delete_all + end end