Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.