b5b87403d3
git-svn-id: file:///home/svn/framework3/trunk@3983 4d416f70-5f16-0410-b530-b9f4589650da
19 lines
284 B
Ruby
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
|