I have created a new layout that I want my devise sign-in page and it's other views to use other than the default application layout.
After creating the layout for devise, I went ahead and put the following in my application controller to choose a layout based on whether devise is being used or not
class ApplicationController < ActionController::Base
layout :layout_by_resource
protected
#Choose layout based on whether user is authenticating or already authenticated
def layout_by_resource
if devise_controller?
render :layout => 'devise'
else
"application"
end
end
end
However, in my console I am receiving a deprecation warning
*DEPRECATION WARNING: Layout found at "devise" for DeviseController but parent controller set layout to :layout_by_resource. Please explicitly set your layout to "devise" or set it to nil to force a dynamic lookup*
I cannot make out how it wants me to format my code while maintaining the logic in it, anyone have an idea how i can go about it?