-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 가상의 데이터를 만들어서 참여 인원 및 개근 인원을 집계하도록 구현 - json-server 를 로컬 환경에서 설치하여 테스트 진행
- Loading branch information
1 parent
c230b4b
commit 0aec3e4
Showing
5 changed files
with
724 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
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 | ||
} | ||
] | ||
} |
Oops, something went wrong.
0aec3e4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
참고자료