Skip to content

Commit

Permalink
feat: 북마크 회고 조회 API 응답 데이터 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjm9841 committed Feb 12, 2024
1 parent 221967d commit a3a82a9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public static MemoirResponseDTO.BookmarkedMemoirListDTO toBookmarkedMemoirPrevie

List<MemoirResponseDTO.BookmarkedMemoirDTO> memoirDTOList = memoirList.stream()
.map(memoir -> MemoirResponseDTO.BookmarkedMemoirDTO.builder()
.memoirId(memoir.getId())
.date(memoir.getDate())
.emoticonUrl(memoir.getEmoticon().getImageUrl())
.remain(index.getAndIncrement() % 2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public static class BookmarkedMemoirListDTO {
@NoArgsConstructor
@AllArgsConstructor
public static class BookmarkedMemoirDTO {
Long memoirId;
LocalDate date;
String emoticonUrl;
Integer remain;
Expand Down

0 comments on commit a3a82a9

Please sign in to comment.