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
GET /api/v1/myBooks/{myBookId}
문제
List<PostHashTag> postHashTags = postHashTagService.findByPostKeyword(postKeyword);
해결
List<PostHashTag> postHashTags = postHashTagService.findByPostKeywordAndMember(postKeyword, author);
연관된 키워드와 작가로 PostHashTag(및 Post) 조회하는 것으로 수정
누구나 해당 도서를 조회할 수 있는 문제 해결
MyBook myBook = findById(myBookId);
MyBook myBook = findByIdAndOwnerId(myBookId, ownerId);
The text was updated successfully, but these errors were encountered:
#39 - Fix: 상품과 관련된 글을 조회할 때 해당 키워드와 관련된 다른 작가의 글까지 조회되는 문제 해결
67d55ee
#39 - Fix: 내도서만 상세 정보조회 가능하도록 변경
ad7198d
No branches or pull requests
Description
GET /api/v1/myBooks/{myBookId}
내 도서 상세정보 조회 기능 문제 해결Todo
연관된 키워드와 작가로 PostHashTag(및 Post) 조회하는 것으로 수정
누구나 해당 도서를 조회할 수 있는 문제 해결
ETC
The text was updated successfully, but these errors were encountered: