-
Notifications
You must be signed in to change notification settings - Fork 101
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
리소스 생성 및 단일 조회에 대한 HTTP API를 리팩터링한다. #561
Comments
✨[UPDATE] 생성 메서드 네이밍 규칙✨
결론: update 메서드가 있는 경우 create를 사용한다. update 메서드가 없는 경우 save를 사용한다. [처음 생각] 생성 메서드 네이밍 통일
현재 생성 API의 이름이 통일성이 없다. 메서드명을 통일해줄 필요가 있어 보인다.
|
Response 타입 : Data 타입 VS Response 타입이전엔 두 DTO의 차이를 명확히 알지 못한 채 Data 타입을 응답으로 반환해주었다. 하지만 결론적으로는 Response 타입을 반환해주는 것으로 변경되었다.
|
아직 프론트와 약속된 응답이 아니기 때문에 지금은 post 요청한 필드 그대로 반환해주는게 맞는 것 같고, 추후에 프론트와 응답이 약속된 상태에선 해당 응답을 기준으로 response를 만들면 되지 않을까 생각합니다.. |
@LoginUser
추가The text was updated successfully, but these errors were encountered: