forked from cap-js-community/feature-toggle-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cdsrc.json
41 lines (41 loc) · 900 Bytes
/
.cdsrc.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
{
"requires": {
"auth": {
"kind": "mocked-auth",
"users": {
"system": {
"tenant": "system",
"password": "system",
"id": "system-user",
"roles": ["system-user"]
},
"alice": {
"tenant": "people",
"password": "alice",
"id": "[email protected]"
},
"bob": {
"tenant": "people",
"password": "bob",
"id": "[email protected]"
},
"clark": {
"tenant": "pets",
"password": "clark",
"id": "[email protected]"
},
"danny": {
"tenant": "pets",
"password": "danny",
"id": "[email protected]"
},
"zork": {
"tenant": "people",
"password": "zork",
"id": "[email protected]",
"features": ["*"]
}
}
}
}
}