14 lines
241 B
Ruby
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
|