-
Notifications
You must be signed in to change notification settings - Fork 5
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
해시태그 목록 조회 기능 구현(issue #307) #308
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요 아톰! 간단해서 특별히 남길 리뷰는 없네요! 수고하셨습니다~~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
수정 사항 확인해주세요!
@GetMapping("/hash-tags") | ||
@Operation(summary = "해시태그 목록 조회 API", description = "해시태그 목록을 조회합니다.") | ||
public ResponseEntity<ApiResponse<List<HashTagResponse>>> getHashTags() { | ||
return ResponseEntity.ok(new ApiResponse<>(hashTagService.getHashTags())); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Request Changes]
분리해주세요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아톰 고생했어요 👍👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요 아톰!
고생하셨습니다.
깔끔하게 잘 작성해주셔서 Approve 드립니다.
구현 요약
해시태그 목록 조회 기능을 구현했습니다.
연관 이슈
참고
코드 리뷰에
RCA 룰
을 적용할 시 참고해주세요.