feat: task 통계 및 마감일 알림 엔드포인트 추가#3
Open
Wade-Gabia wants to merge 1 commit into
Open
Conversation
- GET /tasks/stats: 태스크 현황 통계 (todo/in_progress/done/overdue 카운트) - GET /tasks/overdue: 마감일 초과 태스크 목록 조회 - GET /tasks/due-soon?days=N: N일 이내 마감 예정 태스크 목록 조회 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Author
|
@claude review |
1 similar comment
Collaborator
Author
|
@claude review |
Collaborator
Author
|
@claude review once |
1 similar comment
Collaborator
Author
|
@claude review once |
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.
Summary
GET /tasks/stats: 태스크 현황 통계 집계 (todo / in_progress / done / overdue 카운트)GET /tasks/overdue: 마감일 초과된 태스크 목록 조회GET /tasks/due-soon?days=N: N일 이내 마감 예정 태스크 조회 (기본값 3일)Changes
src/tasks/dto/task-stats.dto.ts추가TasksService.getStats(),getOverdueTasks(),getDueSoonTasks()메서드 추가TasksController에/stats,/overdue,/due-soon엔드포인트 추가Test plan
GET /tasks/stats정상 응답 확인GET /tasks/overdue마감일 초과 태스크 반환 확인GET /tasks/due-soon?days=77일 이내 태스크 반환 확인days파라미터 미전달 시 기본값(3일) 적용 확인🤖 Generated with Claude Code