-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
73 lines (73 loc) · 1.66 KB
/
db.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"todos": [
{
"id": 1,
"title": "first todo",
"description": "Voluptate culpa commodo cillum amet id officia velit enim quis minim tempor exercitation",
"done": true,
"dueDate": null,
"public": true,
"userId": 1,
"position": 1,
"createdAt": null
},
{
"id": 2,
"title": "second todo",
"description": "Do in aliqua proident proident est magna ea occaecat minim aliquip laboris voluptate aute.",
"done": true,
"dueDate": null,
"public": true,
"userId": 1,
"position": 2,
"createdAt": null
},
{
"id": 3,
"title": "third todo",
"description": "Labore velit in pariatur fugiat nisi nisi enim proident duis laborum fugiat nostrud nisi adipisicing.",
"done": true,
"dueDate": null,
"public": true,
"userId": 1,
"position": 3,
"createdAt": null
},
{
"id": 4,
"title": "this is the latest",
"description": "i will have to work on my app",
"dueDate": "2021-08-11T14:38",
"public": false,
"userId": 1,
"position": 4,
"createdAt": null
},
{
"id": 5,
"title": "new",
"description": "have to be able to do this very soon",
"dueDate": "2021-08-10T14:54",
"public": false,
"userId": 1,
"position": 5,
"createdAt": null
}
],
"users": [
{
"id": 1,
"name": "george grant",
"about": "",
"username": "georgio12",
"password": "password"
},
{
"id": 2,
"name": "joshua pen",
"about": "",
"username": "pentop13",
"password": "password"
}
]
}