Created
October 6, 2011 08:11
-
-
Save marhan/1266818 to your computer and use it in GitHub Desktop.
Specific Layout for devise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.to_prepare do | |
Devise::SessionsController.layout "signed_out" | |
Devise::RegistrationsController.layout proc { |controller| user_signed_in? ? "application" : "signed_out" } | |
Devise::ConfirmationsController.layout "signed_out" | |
Devise::UnlocksController.layout "signed_out" | |
Devise::PasswordsController.layout "signed_out" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment