-
Notifications
You must be signed in to change notification settings - Fork 8
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
[BE] 피드백 미작성시 받은 피드백 안보이는 기능(#640) #643
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
de76d0d
feat: deliver 와 receiver 로 피드백을 찾는 메서드 구현
hjk0761 c16bc00
feat: 내가 피드백을 작성했는지에 대한 isWrited 필드 추가
hjk0761 19d6ea7
feat: 받은 피드백을 보여줄 때에 내가 피드백을 작성하지 않은 상대의 피드백은 빈 응답을 내보내는 기능 구현
hjk0761 ac8e27f
test: 받은 피드백 필터링 기능 테스트 구현
hjk0761 1630e12
fix: deliver, receiver 를 반대로 찾던 오류 수정
hjk0761 96e34c9
refactor: 메서드 네이밍 수정
hjk0761 035b1c7
refactor: 피드백 반영
hjk0761 c6648d4
refactor: BiFunction 에서 BiPredicate 로 수정
hjk0761 44439fc
refactor: BiFunction 에서 BiPredicate 로 재수정
hjk0761 88bc02c
refactor: BiFunction 에서 BiPredicate 로 재재수정
hjk0761 0022d14
test: 다수의 assertThat 을 assertAll 로 수정
hjk0761 ec45ad8
refactor: 변수 상수화
hjk0761 0858406
test: 테스트 이름 수정
hjk0761 db36cea
test: 테스트 이름 수정
hjk0761 e596f55
refactor: 변수명 직관적으로 수정
hjk0761 64bc959
refactor: 피드백 조회 시 roomId 도 검사하도록 수정
hjk0761 92d4958
refactor: 충돌 해결
hjk0761 4469fd4
Merge branch 'develop' of https://github.com/woowacourse-teams/2024-c…
hjk0761 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
package corea.feedback.dto; | ||
|
||
import corea.room.domain.Room; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
@Schema(description = "개발 피드백 + 커뮤니케이션 피드백 작성 응답") | ||
|
@@ -20,6 +22,9 @@ public record FeedbackResponse(@Schema(description = "피드백 아이디", exam | |
@Schema(description = "유저 이름", example = "jcoding-play") | ||
String username, | ||
|
||
@Schema(description = "내가 상대방의 피드백 작성을 완료하였는지 여부", example = "false") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 마찬가지입뉘다. |
||
boolean isWrited, | ||
|
||
@Schema(description = "선택한 피드백 키워드", example = "[\"코드를 이해하기 쉬웠어요\", \"컨벤션이 잘 지켜졌어요\"]") | ||
List<String> feedbackKeywords, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
isFeedbackCompleted
같은 이름이 더 어울리는 것 같기는 하네요...MatchResultResponse
에서도 마찬가지입니다.대신 바꾸게 되면 프론트에 노티줘야 할듯. 👀