-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.json
56 lines (56 loc) · 1.4 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
53
54
55
56
[
{
"key": "BaseUrl",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "BaseUrl",
"description": "The URL to the Zermelo API.",
"placeholder": "https://{customer}.zportal.nl",
"required": true
}
},
{
"key": "Token",
"type": "input",
"defaultValue": "",
"templateOptions": {
"type": "password",
"label": "Token",
"description": "The token to authenticate to the Zermelo API",
"required": true
}
},
{
"key": "IsDebug",
"type": "checkbox",
"defaultValue": true,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
},
{
"key": "SchoolNameField",
"type": "input",
"defaultValue": "Organization.Name",
"templateOptions": {
"label": "SchoolNameField",
"description": "Mapping field name for the school or organization from the primary contract.",
"placeholder": "Organization.Name",
"required": true
}
},
{
"key": "ClassroomField",
"type": "input",
"defaultValue": "Department.DisplayName",
"templateOptions": {
"label": "ClassroomField",
"description": "Mapping field name for the classroom or department from the primary contract.",
"placeholder": "Department.DisplayName",
"required": true
}
}
]