Skip to content

Commit

Permalink
feat: 강퇴당한 소속은 내 소속 목록에서 미노출한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed May 27, 2024
1 parent 074d074 commit e2ec809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public List<Agency> findAgencyListByUserId(Long userId) {
return queryFactory.select(agency)
.from(agencyUser)
.join(agencyUser.agency, agency)
.where(agencyUser.userId.eq(userId))
.where(agencyUser.userId.eq(userId), notBlocked())
.fetch();
}

Expand Down

0 comments on commit e2ec809

Please sign in to comment.