Skip to content

Instantly share code, notes, and snippets.

@marhan
Created October 6, 2011 08:11
Show Gist options
  • Save marhan/1266818 to your computer and use it in GitHub Desktop.
Save marhan/1266818 to your computer and use it in GitHub Desktop.
Specific Layout for devise
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