-
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/115] 게시판 글 목록 조회 필터 기능 구현 #120
Conversation
@@ -68,6 +68,7 @@ public static class boardListResponseDTO{ | |||
List<Long> championList; | |||
Double winRate; | |||
LocalDateTime createdAt; | |||
Boolean voice; |
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.
회원이랑 매칭에서 마이크 유무를 mike로 사용중인데 혹시 voice 대신에 mike를 사용해주실 수 있으신가요..?ㅠㅠ
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.
변경 완료하였습니다.
if (mainPosition != null && mainPosition == 0) { | ||
// 전체 포지션 선택 시 필터링에서 제외 | ||
mainPosition = null; | ||
} |
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.
어차피 전체 포지션 선택 시 필터링 조건이 없는거라면 mainPosition을 0으로 입력받아야하는 이유가 있을까요?
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.
포지션 선택을 안하거나 전체 포지션(*)을 선택할 경우 필터링하지 않고 전체 목록이 보이게 구현하였습니다.
🚀 개요
게시판 글 목록 조회 필터 기능 구현
🔍 변경사항
⏳ 작업 내용
📝 논의사항