Files
metasploit-gs/data/msfweb/app/controllers/nops_controller.rb
T
HD Moore c8fb238302 Normalized the model methods, added search completion, etc
git-svn-id: file:///home/svn/framework3/trunk@3980 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-27 05:18:06 +00:00

18 lines
232 B
Ruby

class NopsController < ApplicationController
layout 'windows'
def search_complete(terms)
search_modules(Nop.find_all(), terms)
end
def list
@nops = Nop.find_all()
end
def view
end
def generate
end
end