Files
growstuff/app/controllers/passwords_controller.rb
2019-12-26 13:38:17 +13:00

10 lines
175 B
Ruby

# frozen_string_literal: true
class PasswordsController < Devise::PasswordsController
protected
def after_resetting_password_path_for(_resource)
root_path
end
end