-
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
[LIME-9] 친구 관계 기능 추가 #15
Conversation
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.
수고하셨습니다.
@Operation(summary = "팔로잉 목록 조회", description = "회원이 팔로우한 사람들의 목록을 조회한다.") | ||
@GetMapping("/following/{nickname}") |
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.
설명 수정했습니다! 😄
@ManyToOne(fetch = FetchType.LAZY) | ||
@JoinColumn(name = "to_member_id", nullable = false) | ||
private Member toMember; | ||
|
||
@ManyToOne(fetch = FetchType.LAZY) | ||
@JoinColumn(name = "from_member_id", nullable = false) | ||
private Member fromMember; |
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.
궁금한게 manyToOne으로 연관관계를 맺어줬을 때 발생하는 트러블 슈팅은 없었나요? 맞팔로잉 상태면 순환 관련 문제가 있을 수 있지 않을까 예상했는데 단방향이라 없을 것 같기도 하네요
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.
고생하셨습니다! 전체적으로 코드를 봤을 때 따로 컨맨트 할게 없어서 바로 승인하였습니다 😊
📌 PR 종류
어떤 종류의 PR인지 아래 항목 중에 체크 해주세요.
📌 어떤 기능이 추가 되었나요?
Issue Number
LIME-9
🩵 기능 설명
팔로우 기능
언팔로우 기능
팔로워 목록 조회
팔로잉 목록 조회
📌 기존에 있던 기능에 영향을 주나요?