rosa-build/app/controllers/application_controller.rb

14 lines
247 B
Ruby
Raw Normal View History

2011-03-09 13:13:36 +00:00
class ApplicationController < ActionController::Base
protect_from_forgery
layout :layout_by_resource
protected
def layout_by_resource
if devise_controller?
"sessions"
else
"application"
end
end
2011-03-09 13:13:36 +00:00
end