-
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
[Feat] 클라이밍 채널 권한 위임 / 참여자 독서 현황 조회 / 메모 수정 API #45
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.
👍 수고하셨습니다! 코멘트 남겨뒀으니 확인 부탁드립니당
커밋은 가능한 API 단위로 해주시면 감사하겠습니닷 🙇 🙇♀️
core/src/main/java/org/bookwoori/core/domain/climbing/controller/ClimbingController.java
Outdated
Show resolved
Hide resolved
@Component | ||
@RequiredArgsConstructor | ||
@Transactional | ||
public class ClimbingMemberFacade { |
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.
💊 ClimbingMemberFacade를 따로 두지 않고 ClimbingFacade 하나로 처리해도 되지 않을까요? Server 도메인에서는 따로 구분하지 않았어서 말해봅니당
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.
ClimbingFacade가 너무 길어지기도 하고 Climbing 자체에 관련된 부분 / ClimbingMember 관련된 부분으로 나누어도 괜찮을 거 같아서 그렇게 만들었는데 하나로 합치는 게 좋을까욤
core/src/main/java/org/bookwoori/core/domain/climbing/facade/ClimbingMemberFacade.java
Show resolved
Hide resolved
core/src/main/java/org/bookwoori/core/domain/climbing/facade/ClimbingMemberFacade.java
Show resolved
Hide resolved
core/src/main/java/org/bookwoori/core/domain/climbing/facade/ClimbingMemberFacade.java
Show resolved
Hide resolved
core/src/main/java/org/bookwoori/core/domain/climbingMember/service/ClimbingMemberService.java
Show resolved
Hide resolved
core/src/main/java/org/bookwoori/core/domain/record/service/RecordService.java
Show resolved
Hide resolved
join fetch 사용해서 N+1 문제 해결
진행 종료된 클라이밍 채널 편집 불가능
core/src/main/java/org/bookwoori/core/domain/climbingMember/service/ClimbingMemberService.java
Show resolved
Hide resolved
@@ -32,11 +32,10 @@ public Member getCurrentMember() throws CustomException { | |||
return member; | |||
} | |||
|
|||
@Transactional(readOnly = true) | |||
public void getMemberStatus(Long kakaoId){ | |||
public void getMemberStatus(Long kakaoId) { |
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.
❓ 이거 계정 삭제 API랑 상관 있는 메소드인가요??
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.
OAuth2SuccessHandler
에서 토큰 발급 시 삭제한 멤버 예외 처리를 위해 사용하고 있습니단
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.
아 커밋명이 계정삭제 API 오류 수정
이라 여쭤봤습니당
그리고 다음 PR 때 MeController랑 MeFacade 클래스 이름도 Member~. 로 수정해주시면 감사하겠습니닷 🙇♀️
🛠️ 구현 기능
📝 구현 방법
🎯 Resolve