feat: 알림 API 개선 및 OpenAPI 문서 수정 - #56
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (7)
📝 WalkthroughWalkthrough알림 목록 API에 Changes알림 API 페이지네이션
Estimated code review effort: 3 (Moderate) | ~20 minutes Sequence Diagram(s)sequenceDiagram
participant Client
participant notificationRouter
participant notificationController
participant notificationService
participant notificationRepository
participant Database
Client->>notificationRouter: GET /?page&limit
notificationRouter->>notificationRouter: Validate query
notificationRouter->>notificationController: Forward validated query
notificationController->>notificationService: Request paginated notifications
notificationService->>notificationRepository: Query notifications and total count
notificationRepository->>Database: findMany and count
Database-->>notificationRepository: Results
notificationRepository-->>notificationController: NotificationListResponse
Possibly related PRs
Suggested labels: ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
This was referenced Jul 30, 2026
Merged
This was referenced Aug 8, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 작업 내용
알림 API 코드리뷰 반영 및 기능 개선을 진행했습니다.
✅ 변경 사항
🧪 테스트
테스트 방법
GET /api/notifications?page=1&limit=5요청으로 페이지네이션 동작 확인📷 스크린샷 (선택)
🔥 체크리스트
🙏 To Reviewer
notificationService.createNotification()을 호출하도록 연동이 필요한 상태이며, 담당자들에게 연동 방법을 안내했습니다.Summary by CodeRabbit
새 기능
문서