-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
46 lines (46 loc) · 1.07 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
{
"task": [
{
"_id": "t101",
"userId": "u101",
"txt": "lorem ipsum dolor",
"isDone": false,
"priority": "High",
"color": "red"
},
{
"_id": "t102",
"userId": "u101",
"txt": "lorem ipsum dolor u102",
"isDone": false,
"priority": "Medium",
"color": "yellow"
},
{
"_id": "t103",
"userId": "u101",
"txt": "lorem ipsum dolor u103",
"isDone": false,
"priority": "Low",
"color": "green"
}
],
"user": [
{
"_id": "u101",
"fullName": "Orel Vaizman",
"password": "123",
"userName": "SleroX",
"imgUrl": null,
"isAdmin": false
},
{
"_id": "u102",
"fullName": "Orel Saisman",
"password": "123",
"userName": "Smohta",
"imgUrl": null,
"isAdmin": false
}
]
}