-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
50 lines (50 loc) · 1.53 KB
/
config.example.json
File metadata and controls
50 lines (50 loc) · 1.53 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
44
45
46
47
48
49
50
{
"workers": {
"columns": [
{"id": "agent_name"},
{"id": "activity_str"},
{"id": "formatted_age"},
{"id": "tasks_str"},
{"id": "skills_str", "label": "Skill Set"},
{"id": "team", "numeric": false, "disablePadding": false, "label": "Team", "field": "attributes.team"},
{"id": "contact_uri"}
],
"filterDefns": [
{
"name": "team", "label": "Team", "field": "attributes.team", "defaultOption": "Blue",
"options": [
{"label": "All", "name": "All"},
{"label": "Red", "name": "Red"},
{"label": "Blue", "name": "Blue"},
{"label": "Green", "name": "Green"},
{"label": "Yellow", "name": "Yellow"}
]
}
]
},
"tasks": {
"columns": [
{"id": "from"},
{"id": "status"},
{"id": "queue_name"},
{"id": "formatted_age"},
{"id": "channel_type"},
{"id": "worker_name"},
{"id": "topic", "numeric": false, "disablePadding": false, "label": "Topic", "field": "attributes.topic"}
],
"filterDefns": [
{
"name": "topic", "label": "Topic", "field": "attributes.topic",
"options": [
{"label": "Checking", "name": "Checking"},
{"label": "Credit Card", "name": "CreditCard"},
{"label": "Mortgages", "name": "Mortgages"},
{"label": "Loans", "name": "Loans"},
{"label": "Mobile App", "name": "MobileApp"},
{"label": "Website", "name": "Website"}
]
}
],
"defaultSortCol": "channel_type"
}
}