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.

34 lines
635 B

  1. class Auth::PasswordsController < Devise::PasswordsController
  2. layout 'auth'
  3. # GET /resource/password/new
  4. # def new
  5. # super
  6. # end
  7. # POST /resource/password
  8. # def create
  9. # super
  10. # end
  11. # GET /resource/password/edit?reset_password_token=abcdef
  12. # def edit
  13. # super
  14. # end
  15. # PUT /resource/password
  16. # def update
  17. # super
  18. # end
  19. # protected
  20. # def after_resetting_password_path_for(resource)
  21. # super(resource)
  22. # end
  23. # The path used after sending reset password instructions
  24. # def after_sending_reset_password_instructions_path_for(resource_name)
  25. # super(resource_name)
  26. # end
  27. end