Migrate various forms to be built using simple form instead of raw html. Also adds autocomplete="off" to these forms (#4162).
53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
module Moderator
|
|
module Post
|
|
class QueuesController < ApplicationController
|
|
RANDOM_COUNT = 12
|
|
|
|
respond_to :html, :json
|
|
before_action :approver_only
|
|
skip_before_action :api_check
|
|
|
|
def show
|
|
cookies.permanent[:moderated] = Time.now.to_i
|
|
|
|
if search_params[:per_page]
|
|
cookies.permanent["mq_per_page"] = search_params[:per_page]
|
|
end
|
|
|
|
::Post.without_timeout do
|
|
@posts = ::Post.includes(:disapprovals, :uploader).order("posts.id asc").pending_or_flagged.available_for_moderation(search_params[:hidden]).tag_match(search_params[:tags]).paginate(params[:page], :limit => per_page)
|
|
@posts.each # hack to force rails to eager load
|
|
end
|
|
respond_with(@posts)
|
|
end
|
|
|
|
def random
|
|
cookies.permanent[:moderated] = Time.now.to_i
|
|
|
|
::Post.without_timeout do
|
|
@posts = ::Post.includes(:disapprovals, :uploader).order("posts.id asc").pending_or_flagged.available_for_moderation(false).reorder("random()").limit(RANDOM_COUNT)
|
|
@posts.each # hack to force rails to eager load
|
|
|
|
if @posts.empty?
|
|
flash[:notice] = "Nothing left to moderate!"
|
|
redirect_to(params[:return_to] || posts_path)
|
|
return
|
|
end
|
|
end
|
|
|
|
respond_with(@posts)
|
|
end
|
|
|
|
protected
|
|
|
|
def show_moderation_notice?
|
|
false
|
|
end
|
|
|
|
def per_page
|
|
cookies["mq_per_page"] || search_params[:per_page] || 25
|
|
end
|
|
end
|
|
end
|
|
end
|