-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
63 lines (61 loc) · 1.52 KB
/
db.json
File metadata and controls
63 lines (61 loc) · 1.52 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
61
62
63
{
"me": {
"id": "g7g8h5a3-r5b9-0w3a-6a5e-9h7e6e7g3c5t",
"username": "codingpro"
},
"users": [
{
"id": "e8b9c7a1-9d6c-4d2a-a7c3-fb59a3ec67df",
"username": "franzi",
"password": "123456",
"isAdmin": true
},
{
"id": "2eab04f4-5e6f-43b4-9b8d-cfb437ae57b5",
"username": "juliaschmidt",
"password": "abcdef"
},
{
"id": "4c12f8c8-3af3-4c63-85ae-8c7b3cbb4f67",
"username": "janedoe",
"password": "password"
}
],
"tasks": [
{
"id": "d9f8e7a3-1c2b-4a5e-8b7d-6e7b4c2d3f89",
"userId": "g7g8h5a3-r5b9-0w3a-6a5e-9h7e6e7g3c5t",
"description": "Vue lernen",
"doneState": false,
"successAt": ""
},
{
"id": "c1a4e7f2-8d7e-4b2a-9f3c-5d2b7e6a8f3c",
"userId": "2eab04f4-5e6f-43b4-9b8d-cfb437ae57b5",
"description": "Schwimmen lernen",
"doneState": false,
"successAt": ""
},
{
"id": "f2b7d3c1-4a5e-8d7e-9f3c-6e7b4c2d1a3f",
"userId": "4c12f8c8-3af3-4c63-85ae-8c7b3cbb4f67",
"description": "Job finden",
"doneState": false,
"successAt": ""
},
{
"id": "b4c2d1a3-f2b7-9f3c-4a5e-8d7e6e7b3c1d",
"userId": "e8b9c7a1-9d6c-4d2a-a7c3-fb59a3ec67df",
"description": "Abschlussprojekt",
"doneState": false,
"successAt": ""
},
{
"id": "e7b4c2d3-1a5e-9f3c-8d7e-4b2f7c1d6e8b",
"userId": "2eab04f4-5e6f-43b4-9b8d-cfb437ae57b5",
"description": "Aufräumen",
"doneState": false,
"successAt": ""
}
]
}