Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
[feat #158] 채팅 요청 상세 조회 API #159
[feat #158] 채팅 요청 상세 조회 API #159
Changes from 5 commits
7269136
450fbfa
0a09fe6
06b406a
6107af5
9dd0a01
cb825b9
0440118
96b6fc9
b267541
066c46b
9436afc
dcb9a19
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
ChatInquiry를 조회해서 찾는
getChatInquiryById(Long chatInquiryId)
와 혼동되네요!채팅 요청 상세 조회를 하는 메서드니,
getChatInquiryDetails(Long chatInquiryId, Member member)
는 어떤가요?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.
코드 컨벤션이 따라서 여태까지 이렇게 작성한거라서 지금 바꾸는게 오히려 더 헷갈릴 것 같아요..!
repository 접근함수는 private이기도 하고, 반환타입도 다르니까 보고 구분할 수 있지 않을까 싶습니다.
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.
getChatInquiryDetailsById가 맞는거 아닐까요 그러면?
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.
여러 건 조회 메서드명이
getChatInquiresByMember
니까 단건 조회는getChatInquiryById
가 맞는 것 같습니다~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.
넵 가독성 생각해서 줄바꿈 했습니다
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.
음..이전에도 이런
aseertThat().isEqualTo()
는 줄바꿈을 하지 않으셨었었고, 되게 길지도 않아서 한 줄로 하는게 더 좋아보여요그리고 static import를 하면 더 짧아지고요
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.
네 수정하겠습니다~