disable group posts in home feed

This commit is contained in:
Rob Colbert 2019-08-28 02:21:42 -04:00
parent 0cc5dfab07
commit 1196ef362d
1 changed files with 5 additions and 5 deletions

View File

@ -288,11 +288,11 @@ class Status < ApplicationRecord
def as_home_timeline(account)
query = where(account: [account] + account.following)
if account.user.allows_group_in_home_feed?
query = query.or(where(group: account.groups))
end
# if account.user.allows_group_in_home_feed?
# query = query.or(where(group: account.groups))
# end
query.where(visibility: [:public, :unlisted, :private])
end