[Feature] 메시지 이력 불러오기 API (발송 로그 조회) #122
Labels
No Label
Priority
High
Priority
Low
Priority
Medium
Priority
Non
Priority
Urgent
Status
Available
Status
Done
Status
In Progress
Type
Bug
Type
Chore
Type
Design
Type
Documentation
Type
Feature
Type
Improvement
Type
Refactor
Type
Research
Type
Task
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: SPMS/SPMS_API#122
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
설명
발송 로그 조회 API를 구현한다. PushSendLog 테이블을 페이지네이션과 필터로 조회.
API 엔드포인트
POST /v1/in/push/log— 발송 로그 조회 (페이지네이션 + 필터)체크리스트
Domain Layer
IPushSendLogRepository.cs— 발송 로그 Repository 인터페이스Application Layer
PushLogRequestDto.cs— 조회 요청 DTOPushLogResponseDto.cs— 조회 응답 DTO (items + pagination)IPushService.cs— GetLogAsync 추가PushService.cs— 발송 로그 조회 로직Infrastructure Layer
PushSendLogRepository.cs— Repository 구현DependencyInjection.cs— DI 등록API Layer
PushController.cs— log 엔드포인트 추가