-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
60 lines (60 loc) · 1.32 KB
/
db.json
File metadata and controls
60 lines (60 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"users": [],
"todos": [
{
"title": "testing create Todo",
"description": "first testing",
"date": "2022-11-23",
"subTasks": [
{
"id": "c8bed131-1c75-4b58-a372-54d5c50e4566",
"text": "ok baby",
"status": false
},
{
"id": "fe518317-1e9e-4d8d-8a3f-acd0d0890669",
"text": "ok sona",
"status": false
}
],
"status": "inprogress",
"tags": {
"Official": false,
"Personal": true,
"Others": true
},
"user": "sarkarsaby@gmail.com",
"id": 1
},
{
"title": "testing create Todo2",
"description": "first testing2",
"date": "2022-11-16",
"subTasks": [
{
"id": "c8bed131-1c75-4b58-a372-54d5c50e4566",
"text": "ok baby",
"status": false
},
{
"id": "fe518317-1e9e-4d8d-8a3f-acd0d0890669",
"text": "ok sona",
"status": true
},
{
"id": "5baf8ad6-df1d-4f2d-8d75-4b64f8bf18e9",
"text": "2nd test",
"status": false
}
],
"status": "todo",
"tags": {
"Official": true,
"Personal": false,
"Others": false
},
"user": "sarkarsaby@gmail.com",
"id": 2
}
]
}