Files
danbooru/app/controllers/moderator/ip_addrs_controller.rb
r888888888 1d9596d7f2 fixes #2417
2015-06-29 18:17:59 -07:00

13 lines
208 B
Ruby

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