2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2017-01-24 00:30:13 +00:00
|
|
|
module Users
|
|
|
|
class PasswordsController < Devise::PasswordsController
|
|
|
|
protected
|
2016-07-26 00:14:23 +00:00
|
|
|
|
2017-01-24 00:30:13 +00:00
|
|
|
def after_resetting_password_path_for(resource)
|
|
|
|
signed_in_root_path(resource)
|
|
|
|
end
|
2016-09-14 23:18:15 +00:00
|
|
|
|
2017-01-24 00:30:13 +00:00
|
|
|
def after_sending_reset_password_instructions_path_for(_resource_name)
|
|
|
|
sign_in_path if is_navigational_format?
|
|
|
|
end
|
2016-09-14 23:18:15 +00:00
|
|
|
end
|
2015-09-19 08:26:34 +00:00
|
|
|
end
|