[admin/comments] remove comments of blocked users

This commit is contained in:
Juanjo Bazán
2015-09-17 13:54:15 +02:00
parent 9e1a550b42
commit df72ece3c4
3 changed files with 23 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ class Admin::CommentsController < Admin::BaseController
before_action :load_comment, only: [:confirm_hide, :restore]
def index
@comments = Comment.only_hidden.send(@current_filter).order(hidden_at: :desc).page(params[:page])
@comments = Comment.only_hidden.with_visible_author.send(@current_filter).order(hidden_at: :desc).page(params[:page])
end
def confirm_hide