Merge branch 'develop' into fix/idb-cache-cleanup

This commit is contained in:
Shivam Mishra
2026-02-17 13:37:54 +05:30
committed by GitHub
39 changed files with 720 additions and 100 deletions
@@ -6,12 +6,8 @@ class DeviseOverrides::PasswordsController < Devise::PasswordsController
def create
@user = User.from_email(params[:email])
if @user
@user.send_reset_password_instructions
build_response(I18n.t('messages.reset_password_success'), 200)
else
build_response(I18n.t('messages.reset_password_failure'), 404)
end
@user&.send_reset_password_instructions
build_response(I18n.t('messages.reset_password'), 200)
end
def update