fixes #2453: Customize per page pagination limit for mod queue

This commit is contained in:
r888888888
2015-07-24 13:47:24 -07:00
parent 4cc8f94970
commit d361be4ccd
2 changed files with 19 additions and 8 deletions

View File

@@ -5,12 +5,22 @@ module Moderator
before_filter :post_approvers_only
def show
if params[:per_page]
session["mq_per_page"] = params[:per_page]
end
::Post.without_timeout do
@posts = ::Post.order("posts.id asc").pending_or_flagged.available_for_moderation(params[:hidden]).search(:tag_match => "#{params[:query]} status:any").paginate(params[:page], :limit => 25)
@posts = ::Post.order("posts.id asc").pending_or_flagged.available_for_moderation(params[:hidden]).search(:tag_match => "#{params[:query]} status:any").paginate(params[:page], :limit => per_page)
@posts.each # hack to force rails to eager load
end
respond_with(@posts)
end
protected
def per_page
session["mq_per_page"] || params[:per_page] || 25
end
end
end
end