Files
danbooru/app/controllers/moderator/ip_addrs_controller.rb
2011-07-29 19:42:25 -04:00

13 lines
214 B
Ruby

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