e7b100c4ed
Added javascript helper for automatic live search love. git-svn-id: file:///home/svn/framework3/trunk@3990 4d416f70-5f16-0410-b530-b9f4589650da
14 lines
153 B
Ruby
14 lines
153 B
Ruby
class NopsController < ApplicationController
|
|
layout 'windows'
|
|
|
|
def list
|
|
end
|
|
|
|
def view
|
|
@nops = Nop.find_all()
|
|
end
|
|
|
|
def generate
|
|
end
|
|
end
|