Files
metasploit-gs/data/msfweb/app/controllers/nops_controller.rb
T
lmh b5b87403d3 Mostly last commit before sleep time. Search method is broken.
git-svn-id: file:///home/svn/framework3/trunk@3983 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-27 22:02:51 +00:00

19 lines
284 B
Ruby

class NopsController < ApplicationController
layout 'windows', :except => 'search'
def search
@results = search_modules(Nop.find_all(), params[:terms])
end
def list
@nops = Nop.find_all()
end
def view
@nops = Nop.find_all()
end
def generate
end
end