Include followed profile posts in feed

This commit is contained in:
Jesse C. Fisher 2023-11-20 15:40:22 +00:00
parent 09b9d7ff22
commit 57498b7a0e

View File

@ -122,7 +122,7 @@ class User < ActiveRecord::Base
end
def feed
microposts
Micropost.where("micropostable_id IN (?) OR micropostable_id = ?", following_ids, id)
end
end