-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers.js
50 lines (50 loc) · 1.1 KB
/
users.js
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
export const users = [
{
"id":"1",
"username": "Nikos",
"password": "password",
"role":"user",
"id_licence": "AM 154568"
},
{
"id":"2",
"username": "Stathis",
"password": "password",
"role":"user",
"id_licence": "AH 365495"
},
{
"id":"3",
"username": "Stavros",
"password": "password",
"role":"user",
"id_licence": "AK 632145"
},
{
"id":"4",
"username": "Doctor",
"password": "password",
"role":"health",
"id_licence": "AL 545132",
"office_id": "000001",
"personal_id": "000001"
},
{
"id":"5",
"username": "Officer",
"password": "password",
"role":"verifier",
"id_licence": "AZ 232563",
"office_id": "000002",
"personal_id": "000002"
},
{
"id":"6",
"username": "Admin",
"password": "password",
"role":"admin",
"id_licence": "AN 154652",
"office_id": "000003",
"personal_id": "000003"
}
]