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 7b6ce01
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public User registerUser(OAuthUserInfo oauthUserInfo) {
);
newUser = save(newUser);

log.info("[UserService] registerUserId = {}", newUser.getId());
log.info("[UserService] refreshToken = {}", oauthUserInfo.getAppleRefreshToken());

if (oauthUserInfo.getAppleRefreshToken() != null) {
appleUserRepository.save(
AppleUser.of(
Expand Down

0 comments on commit 7b6ce01

Please sign in to comment.