874a8214dc
git-svn-id: file:///home/svn/framework3/trunk@3944 4d416f70-5f16-0410-b530-b9f4589650da
21 lines
473 B
Ruby
21 lines
473 B
Ruby
class PayloadsController < ApplicationController
|
|
layout 'msfweb', :except => [:list, :view, :generate]
|
|
|
|
# shouldn have one but until we place a main controller, this suffices
|
|
# why? we need a controller that holds the layout, and all others are simply
|
|
# rendered and retrieved via AJAX requests updating the proper elements.
|
|
# problem: old browsers won't see a flippin' thing
|
|
def index
|
|
end
|
|
|
|
def list
|
|
end
|
|
|
|
def view
|
|
end
|
|
|
|
def generate
|
|
end
|
|
|
|
end
|