Files
danbooru/app/controllers/post_histories_controller.rb
2010-11-06 12:16:24 -04:00

7 lines
230 B
Ruby

class PostHistoriesController < ApplicationController
def index
@search = PostHistory.search(params[:search])
@histories = @search.paginate(:page => params[:page], :per_page => 20, :order => "updated_at DESC")
end
end