-
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] 약속 생성 API에서 바디를 통해 uuid를 제공 #87
Conversation
Co-authored-by: seunghye218 <seunghye@student.42seoul.kr>
Test Results43 tests 43 ✅ 4s ⏱️ Results for commit 1e6bff0. ♻️ This comment has been updated with latest results. |
public ResponseEntity<MomoApiResponse<MeetingSharingResponse>> create( | ||
@RequestBody @Valid MeetingCreateRequest request | ||
) { | ||
MeetingSharingResponse response = meetingService.create(request); |
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.
현재 임시 구현일수도 있지만, 지금과 같은 맥락에서 body에 UUID를 담아 응답하는 구현이 계속 유지된다면 나중에 MeetingSharingResponse
라는 레코드명은 수정이 필요할 것 같아요!
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.
그렇네요! 이후 분리하도록 하겠습니다~
관련 이슈
작업 내용
약속을 생성할 때, 약속의 uuid를 응답 바디에 넣어 보냅니다.
특이 사항
리뷰 요구사항 (선택)