-
Notifications
You must be signed in to change notification settings - Fork 3
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: 내가 개설한 스터디 조회 #558
base: BE/develop
Are you sure you want to change the base?
feat: 내가 개설한 스터디 조회 #558
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.
고생하셨습니다 주드 딱히 커멘트 드릴 부분은 없네고, 궁금한 점 커멘트 달았습니다.
|
||
public List<StudyListItemResponse> findAllStudiesCreatedByMember(Member member) { | ||
List<Study> studies = studyRepository.findAllByMasterIdAndProcessingStatus(member.getId(), ProcessingStatus.RECRUITING, Role.MASTER); | ||
return toRecruitingStudyResponse(new SliceImpl<>(studies)); |
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.
그냥 List를 넘겨주는 거에 비해 이점이 있나요?
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.
주드 안녕하세요. 개설한 스터디의 상태를 어떤 걸 보여줄 것인지에 대해 의견을 남겼습니다.
이건 확인하고 넘어가면 좋을 것 같아서 일단 RC 할게요.
@@ -315,4 +316,9 @@ public void exit(Member member, Long studyId) { | |||
Study study = findStudyById(studyId); | |||
study.exit(member); | |||
} | |||
|
|||
public List<StudyListItemResponse> findAllStudiesCreatedByMember(Member member) { | |||
List<Study> studies = studyRepository.findAllByMasterIdAndProcessingStatus(member.getId(), ProcessingStatus.RECRUITING, Role.MASTER); |
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.
이거 개설한 스터디는 모집 중인 것만 보기로 결정된 사안인가요??
사용자가 <개설한 스터디>와 같은 필터링을 선택했을 때, 모집 중인 것만 보여줄 것이라고 예상하기 보다는 개설한 전체 스터디를 보여주길 예상하지 않을까 싶네요.
차라리 전체를 넘겨주되, 정렬하여 모집 중인 것을 상위로 보여주는 게 낫지 않을까요??
UI 측면에서 해결할 수 있다면 OK긴 합니다.
😋 작업한 내용
🙏 PR Point
👍 관련 이슈
기획의 어떤 부분을 구현 / 수정했는가 (굉장히 상세하게 적어주세요, 해당 커밋의 링크, 코드의 위치를 남겨주면 더욱 좋습니다.)
밑은 예시입니다.
시작되면서 스터디의 주 몇 회 정보를 유저가 실제로 선택한 일 수로 수정
스터디가 더 이상 종료되지 않도록 수정