Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#61 [feat] GET - 글모임별 글감 카테고리 조회 #65

Merged
merged 8 commits into from
Jan 11, 2024

Conversation

parkheeddong
Copy link
Contributor

✒️ 관련 이슈번호

Key Changes 🔑

글모임별 글감 카테고리 조회 로직을 구현했습니다!
pr4

To Reviewers 📢

글감 키워드가 존재하지 않는 경우 예외를 던져 주었습니다!
image

@parkheeddong parkheeddong self-assigned this Jan 11, 2024
Copy link
Member

@sohyundoh sohyundoh left a comment

Choose a reason for hiding this comment

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

작업하느라 고생하셨습니다 :>
코멘트 확인해주세요 🤍

final Long moimId
) {
List<CategoryResponse> categoryList = topicService.getKeywordsFromMoim(moimId);
return CategoryListResponse.of(categoryList);
Copy link
Member

Choose a reason for hiding this comment

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

P2
변수선언 없이 한 문장으로 할 수 있지 않을까요?

public List<CategoryResponse> getKeywordsFromMoim(
final Long moimId
) {
List<Topic> topicList = findByMoimId(moimId);
Copy link
Member

Choose a reason for hiding this comment

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

P1
길이가 0일 경우 예외 처리를 해야할 것 같습니다!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

앗 네 isKeywordsEmpty 에서 0인 경우 예외처리를 하고 있습니다!

@parkheeddong parkheeddong changed the title #61 GET - 글모임별 글감 카테고리 조회 #61 [feat] GET - 글모임별 글감 카테고리 조회 Jan 11, 2024
Copy link
Member

@sohyundoh sohyundoh left a comment

Choose a reason for hiding this comment

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

굿 :> LGTM

@parkheeddong parkheeddong merged commit 9d42a4a into develop Jan 11, 2024
1 check passed
@parkheeddong parkheeddong deleted the feat/#61 branch January 12, 2024 09:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Development

Successfully merging this pull request may close these issues.

[feat] GET - 글모임별 글감 카테고리 조회
2 participants