-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
46 lines (46 loc) · 771 Bytes
/
db.json
File metadata and controls
46 lines (46 loc) · 771 Bytes
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
{
"todos": [
{
"title": "Add validation to the app Todo",
"priority": "1",
"complete": false,
"id": 2
},
{
"title": "Make route service",
"priority": "1",
"complete": false,
"id": 3
},
{
"title": "Test REST API",
"priority": "1",
"complete": false,
"id": 4
},
{
"title": "This is task with medium priority",
"priority": "2",
"complete": false,
"id": 5
},
{
"title": "",
"priority": "1",
"complete": false,
"id": 6
},
{
"title": "",
"priority": "1",
"complete": false,
"id": 7
},
{
"title": "",
"priority": "1",
"complete": false,
"id": 8
}
]
}