We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AdminCommentController의 deleteComment() 메서드가 ResponseEntity를 반환하고 있습니다.
AdminCommentController
deleteComment()
ResponseEntity
하지만 저희 프로젝트에선 ListResult, SingleResult, CommonResult 등 공통 Response를 반환해 FE가 처리하기 쉽게 해주고 있습니다.
ListResult
SingleResult
CommonResult
Response
다른 응답값을 반환해 FE를 혼란스럽게 하는 코드들을 수정해 봅시다.
❗️API 스펙이 바뀌는 것이기 때문에 수정 후 FE에 꼭 알려야 합니다.
CommentController
createComment()
showCommentByPostId()
updateComment()
updateLike()
updateDislike()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
이슈 내용
AdminCommentController
의deleteComment()
메서드가ResponseEntity
를 반환하고 있습니다.하지만 저희 프로젝트에선
ListResult
,SingleResult
,CommonResult
등 공통Response
를 반환해 FE가 처리하기 쉽게 해주고 있습니다.다른 응답값을 반환해 FE를 혼란스럽게 하는 코드들을 수정해 봅시다.
❗️API 스펙이 바뀌는 것이기 때문에 수정 후 FE에 꼭 알려야 합니다.
이슈 수행 사항
AdminCommentController
의deleteComment()
반환값을 공통 Response로 변경CommentController
의createComment()
반환값을 공통 Response로 변경CommentController
의showCommentByPostId()
반환값을 공통 Response로 변경CommentController
의deleteComment()
반환값을 공통 Response로 변경CommentController
의updateComment()
반환값을 공통 Response로 변경CommentController
의updateLike()
반환값을 공통 Response로 변경CommentController
의updateDislike()
반환값을 공통 Response로 변경The text was updated successfully, but these errors were encountered: