Skip to content

Commit

Permalink
Merge pull request #175 from Modagbul/feat/block
Browse files Browse the repository at this point in the history
fix : 게시물 전체조회 null 값
  • Loading branch information
seungueonn authored Dec 31, 2023
2 parents b835b09 + 82af1b0 commit 3a301ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ public GetAllBoardResponse findBoardAll(Long teamId, Long memberId) {
List<BoardBlocks> allBoardBlocks = queryFactory
.select(new QBoardBlocks(
board.boardId,
board.teamMember.member.nickName,
board.teamMember.member.nickName.coalesce("알수없음"),
board.isLeader,
board.teamMember.member.profileImage,
board.title,
board.content,
board.commentNum,
board.teamMember.isDeleted,
board.isNotice,
board.teamMember.member.memberId
board.teamMember.member.memberId.coalesce(0L)
))
.from(board)
.leftJoin(board.teamMember, teamMember)
Expand Down

0 comments on commit 3a301ad

Please sign in to comment.