mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-01 05:57:50 -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
|