-
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
[Refactor/161] 알림 목록 조회, 친구 목록 조회 API 수정 #164
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.
고생하셨습니다!
@@ -21,21 +21,19 @@ public class NotificationRepositoryCustomImpl implements NotificationRepositoryC | |||
private final JPAQueryFactory queryFactory; | |||
|
|||
/** | |||
* 알림 내역 조회, 커서 기반 페이징 및 type 필터링 포함 | |||
* 알림 내역 조회, 커서 기반 페이징 포함 | |||
* | |||
* @param memberId | |||
* @param type |
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.
주석에도 type 제거해야 될 것 같아요.
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.
헉 그렇네요 다음 브랜치에서 지우겠습니다!
@@ -29,7 +29,7 @@ public class BlockService { | |||
private final ChatCommandService chatCommandService; | |||
private final FriendService friendService; | |||
|
|||
Integer pageSize = 9; | |||
private final static Integer PAGE_SIZE = 10; |
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.
NotificationService.java 처럼
private final static Integer PAGE_SIZE = 10; | |
private static final Integer PAGE_SIZE = 10; |
로 통일하셔도 좋을 것 같습니다!
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 수정
🔍 변경사항
⏳ 작업 내용
📝 논의사항