2016-09-24 11:00:46 +08:00
|
|
|
# frozen_string_literal: true
|
2014-10-07 17:46:09 -04:00
|
|
|
class Users::PasswordsController < Devise::PasswordsController
|
|
|
|
protected
|
2016-07-26 08:14:23 +08:00
|
|
|
|
2016-09-15 07:18:15 +08:00
|
|
|
def after_resetting_password_path_for(resource)
|
|
|
|
signed_in_root_path(resource)
|
|
|
|
end
|
|
|
|
|
2016-09-24 11:00:46 +08:00
|
|
|
def after_sending_reset_password_instructions_path_for(_resource_name)
|
2016-09-15 07:18:15 +08:00
|
|
|
new_user_session_path if is_navigational_format?
|
|
|
|
end
|
2015-09-19 16:26:34 +08:00
|
|
|
end
|