-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.json
More file actions
43 lines (43 loc) · 1.16 KB
/
configuration.json
File metadata and controls
43 lines (43 loc) · 1.16 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
[
{
"key": "ClientId",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "ClientId",
"description": "The client id to connect to the API",
"required": true
}
},
{
"key": "ClientSecret",
"type": "input",
"defaultValue": "",
"templateOptions": {
"type": "password",
"label": "ClientSecret",
"description": "The client secret to connect to the API",
"required": true
}
},
{
"key": "BaseUrl",
"type": "input",
"defaultValue": "https://<name>.rooster.nl/InPlanningService/rest",
"templateOptions": {
"label": "BaseUrl",
"description": "The URL to the API.",
"required": true
}
},
{
"key": "isDebug",
"type": "checkbox",
"defaultValue": false,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]