Skip to content

Commit

Permalink
release: deploy to prod (#3)
Browse files Browse the repository at this point in the history
* feat: 강퇴당한 소속은 내 소속 목록에서 미노출한다.
  • Loading branch information
rlarltj authored Jun 1, 2024
1 parent 09e0fe7 commit ad3053a
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 ad3053a

Please sign in to comment.