Files
danbooru/app/controllers/moderator/ip_addrs_controller.rb
2013-03-19 23:10:10 +11:00

13 lines
206 B
Ruby

module Moderator
class IpAddrsController < ApplicationController
before_filter :janitor_only
def index
@search = IpAddrSearch.new(params[:search])
end
def search
end
end
end