-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfiguration.json
52 lines (52 loc) · 1.42 KB
/
configuration.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
[
{
"key": "BaseUrl",
"type": "input",
"templateOptions": {
"label": "BaseUrl",
"placeholder": "Example: https://12345.rest.afas.online/profitrestservices",
"description": "The URL of your Profit environment",
"required": true
}
},
{
"key": "Token",
"type": "input",
"templateOptions": {
"label": "Token",
"type": "password",
"placeholder": "Example: <token><version>1</version><data>555012345678901234567890123456789</data></token>",
"description": "The AppConnector token to connect to Profit.",
"required": true
}
},
{
"key": "positionsAction",
"type": "radio",
"defaultValue": "usePositions",
"templateOptions": {
"label": "What to do with positions?",
"description": "Do not change this in a production environment, as this can lead to the revocation of authorizations.",
"options": [
{
"value": "onlyEmployments",
"label": "Only use employments, do not use positions"
},
{
"value": "usePositions",
"label": "Use employments and positions, block person when position is missing"
}
]
}
},
{
"key": "isDebug",
"type": "checkbox",
"defaultValue": false,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]