MS SM only show accpetable types of posts in the featured users stream

This commit is contained in:
Maxwell Salzberg 2011-10-05 21:22:10 -07:00
parent cdce54bbda
commit d7bd26fdf3

View file

@ -20,7 +20,7 @@ class FeaturedUsersStream < BaseStream
end
def posts
Post.all_public.where(:author_id => people.map{|x| x.id}).for_a_stream(max_time, order)
Post.all_public.where(:author_id => people.map{|x| x.id}, :type => AspectStream::TYPES_OF_POST_IN_STREAM).for_a_stream(max_time, order)
end
def people