Skip to content

Commit

Permalink
좋아요리스트
Browse files Browse the repository at this point in the history
  • Loading branch information
Johyunik committed Dec 4, 2023
1 parent 53e4424 commit 7e22676
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public BoardDetailResponseDTO detailBoard(@PathVariable int boardId) {
boardDetailResponseDTO.setCategory(boardEntity.getCategory());
boardDetailResponseDTO.setHashTag(boardEntity.getHashTag());
boardDetailResponseDTO.setStatus(boardEntity.isStatus());
boardDetailResponseDTO.setLikelist(boardEntity.getLikelist());
List<ImageDTO> imageDTOList = new ArrayList<>();
for (ImageEntity images : boardEntity.getImages()) {
imageDTOList.add(images.entityToDTO(images));
Expand Down

0 comments on commit 7e22676

Please sign in to comment.