-
Notifications
You must be signed in to change notification settings - Fork 2
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: 알림을 확인 할 수 있는 알림센터 기능 추가 #392
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 record NotificationFindAllResponse( | ||
@Schema(description = "알림 타입") NotificationType notificationType, | ||
@Schema(description = "알림 날짜") LocalDateTime createdAt) { | ||
|
||
public static NotificationFindAllResponse of( | ||
NotificationType notificationType, LocalDateTime createdAt) { | ||
return new NotificationFindAllResponse(notificationType, createdAt); | ||
} | ||
} |
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.
notificationType과 createdAt만 DTO로 정하신 이유가 있나요??
source나 targetId로 필요한 데이터가 있지 않을까해서용
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.
LGTM✅
ea532fa
to
1798660
Compare
Quality Gate passedIssues Measures |
🌱 관련 이슈
📌 작업 내용 및 특이사항
📚 기타