Skip to content

Fix/#514#515

Merged
ljy1348 merged 2 commits into
devfrom
fix/#514
May 31, 2026
Merged

Fix/#514#515
ljy1348 merged 2 commits into
devfrom
fix/#514

Conversation

@ljy1348

@ljy1348 ljy1348 commented May 31, 2026

Copy link
Copy Markdown
Contributor

Related Issue

Key Changes

get /novels/popular 조회시 필드 추가
author: 작가명
isNovelCompleted: 연재/완결 여부
novelGenres: 장르명
novelGenreImage: 작품 상세에서 사용 중인 장르 아이콘 이미지
keywords: 상위 연관 키워드 최대 2개
novelDescription: feedContent가 null일 때 대체로 보여줄 작품 소개

Feed 도메인에서 안쓰는 popularFedds 필드 제거

To Reviewers

References

@ljy1348 ljy1348 linked an issue May 31, 2026 that may be closed by this pull request
1 task
@ljy1348 ljy1348 merged commit a81a572 into dev May 31, 2026
2 checks passed

@GiJungPark GiJungPark left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다!

Comment on lines +23 to +28
List<String> keywordGetResponsesList = keywords.get(novel.getNovelId()).stream()
.map(keyword -> keyword.getKeywordName())
.toList();
List<String> genres = novel.getNovelGenres().stream()
.map(novelGenre -> novelGenre.getGenre().getGenreName())
.toList();

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p5; 뭔가 해당 메서드들은 공통으로 사용하는 부분이 많을 것 같은 느낌이 드네요.
나중에 일급 함수로 구분지어서 관리하면 편할 것 같기도 하네요!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[FIX] 홈 화면 인기 소설 조회 정보 추가

2 participants