Files
danbooru/app/controllers/mod_actions_controller.rb
2013-05-15 01:01:19 -04:00

6 lines
193 B
Ruby

class ModActionsController < ApplicationController
def index
@mod_actions = ModAction.search(params[:search]).order("id desc").paginate(params[:page], :limit => params[:limit])
end
end