Include followed profile posts in feed

This commit is contained in:
Jesse C. Fisher 2023-11-20 15:40:22 +00:00 committed by TheNeedful-DO
parent 3a18d741c2
commit cf22312f2d

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