orbit-basic/app/controllers/desktop_controller.rb

11 lines
147 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
end
2012-03-28 10:53:30 +00:00
end