Skip to content

Commit

Permalink
feat: 참여 인원 및 개근 인원 테스트 API 작성 #118
Browse files Browse the repository at this point in the history
- 가상의 데이터를 만들어서 참여 인원 및 개근 인원을 집계하도록 구현
- json-server 를 로컬 환경에서 설치하여 테스트 진행
  • Loading branch information
Han-Joon-Hyeok committed Dec 29, 2022
1 parent c230b4b commit 0aec3e4
Show file tree
Hide file tree
Showing 5 changed files with 724 additions and 8 deletions.
28 changes: 28 additions & 0 deletions db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"monthly-user": [
{
"intraId": "joonhan",
"isPerfectAttendance": true,
"attendanceCount": 20,
"totalPerfectCount": 4
},
{
"intraId": "mgo",
"isPerfectAttendance": false,
"attendanceCount": 10,
"totalPerfectCount": 5
},
{
"intraId": "susong",
"isPerfectAttendance": true,
"attendanceCount": 20,
"totalPerfectCount": 3
},
{
"intraId": "minsukan",
"isPerfectAttendance": false,
"attendanceCount": 15,
"totalPerfectCount": 4
}
]
}
Loading

1 comment on commit 0aec3e4

@Han-Joon-Hyeok
Copy link
Member Author

Choose a reason for hiding this comment

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

Please sign in to comment.