-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/44 chat #107
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
Merged
Merged
Feature/44 chat #107
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7848b0e
Merge branch 'main' into feature/44-chat
yyytir777 d9c9ed0
feat : stomp import 및 인증 설정 진행
yyytir777 e865c12
feat : 웹소켓 subscribe, unsubscribe, disconnect 시 유저의 실시간 채팅방 접속 정보 수정
yyytir777 43fc79b
feat : chatMessage 엔티티 추가
yyytir777 b8fc9bb
feat : 채팅 전송, 채팅이력 조회 API 생성
yyytir777 4f4b9b9
fix : 채팅 기능 고도화
yyytir777 9dee08f
Merge branch 'develop' into feature/44-chat
yyytir777 315d908
Merge remote-tracking branch 'origin/develop' into feature/44-chat
yyytir777 7b8e17f
fix : minor change
yyytir777 c6dbd82
fix : 웹소켓에서 오류 발생 시 에러 메시지 사용자에게 보냄
yyytir777 38f4c25
fix : 참여 요청 거절 수정
yyytir777 270f9c4
Merge branch 'develop' into feature/44-chat
yyytir777 8b1d659
fix : 파티 요청 채팅방 반환하도록 수정
yyytir777 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 hidden or 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 hidden or 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
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.
🧩 Analysis chain
🏁 Script executed:
cat -n src/main/java/ita/tinybite/domain/party/controller/PartyController.java | head -100Repository: tinybite-2025/tinybite-server
Length of output: 4545
🏁 Script executed:
fd -t f "PartyService.java"Repository: tinybite-2025/tinybite-server
Length of output: 138
🏁 Script executed:
rg -t java "joinParty" --max-count=20Repository: tinybite-2025/tinybite-server
Length of output: 442
🏁 Script executed:
Repository: tinybite-2025/tinybite-server
Length of output: 32115
🏁 Script executed:
rg -t java "public Long joinParty" -A 30Repository: tinybite-2025/tinybite-server
Length of output: 3204
🏁 Script executed:
Repository: tinybite-2025/tinybite-server
Length of output: 1594
🏁 Script executed:
rg -t java "schema = @Schema" src/main/java/ita/tinybite/domain/party/controller/PartyController.javaRepository: tinybite-2025/tinybite-server
Length of output: 1200
joinParty응답에서 반환되는Long값이 "1:1 채팅방 ID"임을 API 문서에 명확히 해야 함PartyService.joinParty()는oneToOneChatRoom.getId()를 반환하지만, 현재 Swagger 문서의@ApiResponse(200)응답 설명은 "참여 신청 성공"으로만 되어 있어 반환값의 의미가 명확하지 않습니다.@Schema어노테이션을 추가하여 반환 값이 "1:1 채팅방 ID"임을 명시적으로 문서화하고, 프론트엔드 API 계약과 후속 호출 흐름을 이에 맞게 업데이트하세요.