group posts in feed db builder

This commit is contained in:
2458773093
2019-08-20 02:25:10 +03:00
parent 213d5862ac
commit 1f0f96415e
2 changed files with 4 additions and 1 deletions

View File

@@ -283,7 +283,7 @@ class Status < ApplicationRecord
end
def as_home_timeline(account)
where(account: [account] + account.following).where(visibility: [:public, :unlisted, :private])
where(account: [account] + account.following).or(where(group: account.groups)).where(visibility: [:public, :unlisted, :private])
end
def as_group_timeline(group)