Skip to content

Commit

Permalink
update: #24 탈퇴한 회원은 인증 대상에서 제외되도록 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
woody35545 committed May 6, 2024
1 parent 47a4ad7 commit 2e1f2d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public interface AccountRepository extends JpaRepository<Account, String> {
@Query("SELECT a.id as username, m.id as userId , b.password as password, m.role as role FROM Account a " +
"INNER JOIN a.member m " +
"INNER JOIN BookstoreAccount b ON a.id = b.id " +
"WHERE a.id = :id")
"WHERE a.id = :id AND a.deleted = 0")
UserEntityDto loadUserEntity(String id);
}

0 comments on commit 2e1f2d6

Please sign in to comment.