Files
danbooru/app/controllers/moderator/ip_addrs_controller.rb

14 lines
241 B
Ruby

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