orbit-basic/app/controllers/desktop_controller.rb

19 lines
254 B
Ruby
Raw Normal View History

2012-03-28 10:53:30 +00:00
class DesktopController< ApplicationController
layout 'desktop'
def index
end
2012-03-29 07:23:48 +00:00
def desktop
render :layout => false
2012-03-29 11:50:23 +00:00
end
def app_manager
render :layout => false
end
def sections
render :layout => false
end
2012-03-28 10:53:30 +00:00
end