-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
54 lines (54 loc) · 1.2 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
{
"todos": [],
"users": [
{
"email": "[email protected]",
"password": "$2a$10$.JUGmdIEktAji4NjSw6YBO16MIZsHW0c1iArb92nD/e33if6gnnxC",
"firstname": "Olivier",
"lastname": "Monge",
"age": 32,
"id": 1
},
{
"email": "[email protected]",
"password": "$2a$10$WGWOle/Rlii9hJX8Aud4oe3SUyh11vfUTNgNgZoL/7gG1lzV2w5Ue",
"firstname": "Hatem",
"lastname": "Hatamleh",
"age": 33,
"id": 2
},
{
"email": "[email protected]",
"password": "$2a$10$LOHNy2rbllaS1Brd8rvrdO5CfuIEun/ANXlt99ivs0dnvMwnAc7QS",
"id": 3
},
{
"email": "[email protected]",
"password": "$2a$10$iYES1adDcJseat4iamNMeO5vHvXFwvktnMmeIdRrY0trHFuDrDN3m",
"firstname": "Olivier",
"lastname": "Monge",
"age": 32,
"id": 4
}
],
"courses": [
{
"id": 1,
"courseTitle": "Full selenium course",
"duration": "18 hours",
"videos": 180
},
{
"id": 2,
"courseTitle": "Full appium course",
"duration": "16 hours",
"videos": 140
},
{
"id": 3,
"courseTitle": "Full Cypress course",
"duration": "8 hours",
"videos": 100
}
]
}