-
Notifications
You must be signed in to change notification settings - Fork 0
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
GTB-63 [fix] 주점 대기인원 조회 API 및 주점관리 API 수정 #65
Conversation
menuRepository.save(menu); | ||
return menu; |
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.
JPA의 save()
는 저장한 객체를 그대로 리턴하기 때문에 아래처럼 변경하는 것이 더 좋을 것 같습니다.
return menuRepository.save(menu);
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.
해당 부분 생각을 못하고 있었습니다. 감사합니다!! 👍
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.
이상 없는 것 같습니다! 고생하셨습니다!
고생하셨습니다! 의견 확인 부탁드립니다! |
1. 무슨 이유로 코드를 변경했나요?
2. 어떤 위험이나 장애를 발견했나요?
3. 관련 스크린샷을 첨부해주세요.
Before
After
4. 완료 사항
5. 추가 사항