Skip to content

Commit

Permalink
feat: 강퇴당한 소속은 내 소속 목록에서 미노출한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed Jun 1, 2024
1 parent 6438b15 commit 4a03840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- dev
- feat/**

# 권한 설정
permissions:
contents: read
Expand Down
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 4a03840

Please sign in to comment.