group posts in feed db builder
This commit is contained in:
@@ -71,6 +71,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
|
||||
|
||||
has_many :group_accounts, inverse_of: :account, dependent: :destroy, source: :account
|
||||
has_many :groups, through: :group_accounts
|
||||
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user