[Feature] 예약 발송 등록/취소 API #116
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#116
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를 구현한다.
API 엔드포인트
POST /v1/in/push/schedule— 예약 발송 등록POST /v1/in/push/schedule/cancel— 예약 취소체크리스트
Application Layer
PushScheduleRequestDto.cs— 예약 발송 요청 DTOPushScheduleCancelRequestDto.cs— 예약 취소 요청 DTOPushScheduleResponseDto.cs— 예약 발송 응답 DTOIScheduleCancelStore.cs— 예약 취소 저장소 인터페이스IPushService.cs— ScheduleAsync, CancelScheduleAsync 추가PushService.cs— 예약 발송/취소 로직 구현Infrastructure Layer
ScheduleCancelStore.cs— Redis 기반 예약 취소 저장소ScheduleWorker.cs— 취소 여부 체크 로직 추가DependencyInjection.cs— DI 등록API Layer
PushController.cs— schedule, schedule/cancel 엔드포인트 추가