engine/app/controllers/application_controller.rb

12 lines
272 B
Ruby
Raw Permalink Normal View History

class ApplicationController < ActionController::Base
2010-03-29 22:01:47 +00:00
protect_from_forgery
protected
2010-09-15 00:19:34 +00:00
# rescue_from Exception, :with => :render_error
#
# def render_error
# render :template => "/admin/errors/500", :layout => '/admin/layouts/box', :status => 500
2010-09-15 00:19:34 +00:00
# end
2010-03-29 22:01:47 +00:00
end