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
search 기능 작성 중에 Post entity에서 univ_id를 참조해야하는 부분이 있어 최근 회의를 토대로 Post 객체 수정이 필요할 것 같습니다.
univ_id
ex) backend/domain/search/service/SearchServiceImpl.java:72:
Page<Post> findByUnivId(Long univId, Pageable pageable);
private void getPostsInUniversity(Long univId, List<Post> searchedPosts, List<Post> searchedPostsInUniv) { searchedPosts.forEach(post -> { if (Objects.equals(post.getUnivId(), univId)) { searchedPostsInUniv.add(post); } }); }
추가적으로 하고 싶은 말! 템플릿 너무 훌륭해요 👍🏻
The text was updated successfully, but these errors were encountered:
Merge branch 'develop' of https://github.com/h-jjang/bauction into fix/…
a85623d
…#63-post-entity
Merge pull request #67 from h-jjang/fix/#63-post-entity
0562ddf
Fix/#63 Post, User 엔티티 수정
No branches or pull requests
🤔 버그 내용
search 기능 작성 중에 Post entity에서
univ_id
를 참조해야하는 부분이 있어 최근 회의를 토대로 Post 객체 수정이 필요할 것 같습니다.🚩 버그 발견 위치
ex) backend/domain/search/service/SearchServiceImpl.java:72:
Page<Post> findByUnivId(Long univId, Pageable pageable);
⚠ 에러 캡쳐
🙂 etc
추가적으로 하고 싶은 말!
템플릿 너무 훌륭해요 👍🏻
The text was updated successfully, but these errors were encountered: