Replace this common pattern in controllers:
@tags = Tag.search(search_params).paginate(params[:page], :limit => params[:limit], :search_count => params[:search])
with this:
@tags = Tag.paginated_search(params)
`search_count` is used to skip doing a full page count when we're not
doing a search (on the assumption that the number of results will be
high when not constrained by a search). We didn't do this consistently
though. Refactor to do this in every controller.
38 lines
928 B
Ruby
38 lines
928 B
Ruby
class PostVersionsController < ApplicationController
|
|
before_action :member_only, except: [:index, :search]
|
|
before_action :check_availabililty
|
|
around_action :set_timeout
|
|
respond_to :html, :xml, :json
|
|
respond_to :js, only: [:undo]
|
|
|
|
def index
|
|
@post_versions = PostArchive.includes(:updater, post: [:versions]).paginated_search(params)
|
|
respond_with(@post_versions)
|
|
end
|
|
|
|
def search
|
|
end
|
|
|
|
def undo
|
|
@post_version = PostArchive.find(params[:id])
|
|
@post_version.undo!
|
|
|
|
respond_with(@post_version)
|
|
end
|
|
|
|
private
|
|
|
|
def set_timeout
|
|
PostArchive.connection.execute("SET statement_timeout = #{CurrentUser.user.statement_timeout}")
|
|
yield
|
|
ensure
|
|
PostArchive.connection.execute("SET statement_timeout = 0")
|
|
end
|
|
|
|
def check_availabililty
|
|
if !PostArchive.enabled?
|
|
raise NotImplementedError.new("Archive service is not configured. Post versions are not saved.")
|
|
end
|
|
end
|
|
end
|