You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
519 B

  1. class Auth::SessionsController < Devise::SessionsController
  2. layout 'auth'
  3. # before_filter :configure_sign_in_params, only: [:create]
  4. # GET /resource/sign_in
  5. # def new
  6. # super
  7. # end
  8. # POST /resource/sign_in
  9. # def create
  10. # super
  11. # end
  12. # DELETE /resource/sign_out
  13. # def destroy
  14. # super
  15. # end
  16. # protected
  17. # If you have extra params to permit, append them to the sanitizer.
  18. # def configure_sign_in_params
  19. # devise_parameter_sanitizer.for(:sign_in) << :attribute
  20. # end
  21. end