Do not include moderator posts in the group area.

This commit is contained in:
Robin Ward 2014-03-13 14:06:22 -04:00
parent fd1c824187
commit e0dee0f10c
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ class Group < ActiveRecord::Base
def posts_for(guardian, before_post_id=nil)
user_ids = group_users.map {|gu| gu.user_id}
result = Post.where(user_id: user_ids).includes(:user, :topic).references(:posts, :topics)
result = result.where('topics.archetype <> ?', Archetype.private_message)
.where('topics.archetype <> ?', Archetype.private_message)
.where(post_type: Post.types[:regular])
unless guardian.is_staff?
allowed_ids = guardian.allowed_category_ids