refactor: change password repository lookup (#19584)

This commit is contained in:
Jason Rasmussen 2025-06-27 16:52:04 -04:00 committed by GitHub
parent a2a9797fab
commit 09cbc5d3f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 26 deletions

View file

@ -97,6 +97,16 @@ where
"users"."id" = $1
and "users"."deletedAt" is null
-- UserRepository.getForChangePassword
select
"users"."id",
"users"."password"
from
"users"
where
"users"."id" = $1
and "users"."deletedAt" is null
-- UserRepository.getByEmail
select
"id",