Use named constants for HTTP response codes.

This commit is contained in:
Tom Hughes 2008-02-23 15:35:14 +00:00
parent cacf1879c3
commit 071b0be241

View file

@ -0,0 +1,8 @@
class ExportController < ApplicationController
def start
render :update do |page|
page.replace_html :sidebar_content, :partial => 'start'
page.call "openSidebar"
end
end
end