Files
danbooru/app/controllers/moderator/ip_addrs_controller.rb
r888888888 4739c45da0 fixes #3729
2018-05-26 13:13:07 -07:00

16 lines
298 B
Ruby

module Moderator
class IpAddrsController < ApplicationController
before_action :moderator_only
respond_to :html, :json
def index
@search = IpAddrSearch.new(params[:search])
@results = @search.execute
respond_with(@results)
end
def search
end
end
end