Guest User

Untitled

a guest
May 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # How to give your devise controllers all the same layout (e.g. "authentication" below)
  2. class ApplicationController < ActionController::Base
  3. layout :setup_layout
  4.  
  5. def setup_layout
  6. return "authentication" if
  7. [ConfirmationsController, PasswordsController, SessionsController,
  8. RegistrationsController, UnlocksController].include? self.class
  9. "application"
  10. end
  11.  
  12. end
Add Comment
Please, Sign In to add comment