Skip to content
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

Merged
merged 2 commits into from
May 9, 2024

Conversation

kdomo
Copy link
Member

@kdomo kdomo commented May 7, 2024

🌱 관련 이슈

📌 작업 내용 및 특이사항

  • push 패키지를 notification으로 변경하였습니다.
  • 로그인 된 유저의 모든 알림 내역을 조회합니다

📚 기타

  • notification쪽 로직 이벤트로 분리하면 좋겠네용

@kdomo kdomo added 🥈 P2 급하지 않지만 꼭 필요한 이슈 ✨ feature 새로운 기능 추가 및 수정 labels May 7, 2024
@kdomo kdomo self-assigned this May 7, 2024
@kdomo kdomo requested review from uwoobeat and char-yb as code owners May 7, 2024 13:17
Copy link
Member

@char-yb char-yb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리뷰 확인부탁드릴게용

Comment on lines +8 to +16
public record NotificationFindAllResponse(
@Schema(description = "알림 타입") NotificationType notificationType,
@Schema(description = "알림 날짜") LocalDateTime createdAt) {

public static NotificationFindAllResponse of(
NotificationType notificationType, LocalDateTime createdAt) {
return new NotificationFindAllResponse(notificationType, createdAt);
}
}
Copy link
Member

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로 필요한 데이터가 있지 않을까해서용

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

알림에 대한 후속 액션이 없고
단순 뷰로 보여주기위한 기획이여서
요대로 작성했숨니당

Copy link
Member

@char-yb char-yb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM✅

@kdomo kdomo force-pushed the feature/365-notification branch from ea532fa to 1798660 Compare May 9, 2024 14:05
Copy link

sonarqubecloud bot commented May 9, 2024

@kdomo kdomo merged commit 24c6c21 into develop May 9, 2024
2 checks passed
@github-actions github-actions bot added the merged 머지된 PR label May 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feature 새로운 기능 추가 및 수정 merged 머지된 PR 🥈 P2 급하지 않지만 꼭 필요한 이슈
Projects
Status: 완료
Development

Successfully merging this pull request may close these issues.

✨ 알림을 확인 할 수 있는 알림센터 기능 추가
2 participants