6 lines
174 B
Ruby
6 lines
174 B
Ruby
|
class Users::PasswordsController < Devise::PasswordsController
|
||
|
protected
|
||
|
def after_resetting_password_path_for(resource)
|
||
|
signed_in_root_path(resource)
|
||
|
end
|
||
|
end
|