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

feat: 유저 리뷰 조회 기능 #152

Merged
merged 5 commits into from
Jan 27, 2024
Merged

feat: 유저 리뷰 조회 기능 #152

merged 5 commits into from
Jan 27, 2024

Conversation

choidongkuen
Copy link
Member

🚀 어떤 기능을 개발했나요?

  • 유저 리뷰 조회 기능을 개발

🕶️ 어떻게 해결했나요?

  • 유저 리뷰 조회 API
  • 단위,통합 테스트 구현 및 테스트

🦀 이슈 넘버

Copy link

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

통합 테스트를 단위 테스트 이름으로 올렸네요 🥲

Copy link
Member

@devxb devxb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨씁니다~

public interface UserRepository extends JpaRepository<User, Long> {

@Query("select u from users u " +
"where u.oauth.authenticated = :authenticated and u.oauth.oauthId = :oAuthId")
"where u.oauth.authenticated = :authenticated and u.oauth.oauthId = :oAuthId")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

나중에 authenticated랑 oauthId에 인덱스 걸어줘야겠네요

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🔥

@choidongkuen choidongkuen merged commit d24c6a7 into develop Jan 27, 2024
4 checks passed
@choidongkuen choidongkuen deleted the iss-#147 branch January 27, 2024 18:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: 유저가 받은 모든 리뷰 조회 기능
2 participants