Skip to content
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

[BugFix] 내 도서 상세정보 조회 기능 문제 해결 #39

Open
2 tasks done
ahah525 opened this issue Nov 10, 2022 · 0 comments
Open
2 tasks done

[BugFix] 내 도서 상세정보 조회 기능 문제 해결 #39

ahah525 opened this issue Nov 10, 2022 · 0 comments
Labels
BugFix Something isn't working

Comments

@ahah525
Copy link
Collaborator

ahah525 commented Nov 10, 2022

Description

  • GET /api/v1/myBooks/{myBookId} 내 도서 상세정보 조회 기능 문제 해결

Todo

  • 내 도서 상세조회에서 해당 상품과 관련된 글을 조회할 때, 다른 작가의 글까지 조회되는 문제 해결

문제

List<PostHashTag> postHashTags = postHashTagService.findByPostKeyword(postKeyword);
  • 연관된 키워드만으로 PostHashTag(및 Post) 조회

해결

List<PostHashTag> postHashTags = postHashTagService.findByPostKeywordAndMember(postKeyword, author);
  • 연관된 키워드와 작가로 PostHashTag(및 Post) 조회하는 것으로 수정

  • 누구나 해당 도서를 조회할 수 있는 문제 해결

문제

MyBook myBook = findById(myBookId);
  • 단순히 id 로만 MyBook 조회

해결

MyBook myBook = findByIdAndOwnerId(myBookId, ownerId);
  • 내가 실제로 보유하고 있는 MyBook 만 조회할 수 있도록 id, OwnerId 로 조회하는 것으로 수정

ETC

@ahah525 ahah525 changed the title [Refactor] 4주차 미션 리팩토링 [BugFix] 내 도서 상세정보 조회 기능 문제 해결 Nov 10, 2022
@ahah525 ahah525 added the BugFix Something isn't working label Nov 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BugFix Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant