Skip to content

Commit

Permalink
Merge pull request #268 from JNU-econovation/fix/BE-100
Browse files Browse the repository at this point in the history
[BE-100] 칸반보드 응답 INVISIBLE 타입 카드 포함
  • Loading branch information
rlajm1203 authored Sep 19, 2024
2 parents 2c72741 + 3557aa4 commit 5913fca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public List<BoardCardResponseDto> getByNavigationId(Integer navigationId, Intege
boards = boards.stream()
.filter(
board ->{
if(board.getId()==1 || board.getId()==2 || board.getId()==3) {
if(board.getCardType().equals(CardType.INVISIBLE)) {
return true;
}
return year == null || Optional.ofNullable(board.getCardId())
Expand Down

0 comments on commit 5913fca

Please sign in to comment.