mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-31 13:37:49 -05:00
10 lines
175 B
Ruby
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
|