Skip to content

Commit

Permalink
Merge PR(#25) from feature/auth-#24 탈퇴한 회원은 인증 대상에서 제외되도록 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
woody35545 authored May 7, 2024
2 parents 47a4ad7 + 2e1f2d6 commit f77d361
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 f77d361

Please sign in to comment.