-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
83 lines (83 loc) · 2.11 KB
/
config.example.json
File metadata and controls
83 lines (83 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"ticketConfig": {
"ticketCategoryId": "1234567890123456789",
"closedTicketCategoryId": "1234567890123456789",
"ticketChannelPrefix": "example_value",
"ticketRoleId": "1234567890123456789",
"categories": [
{
"id": "1234567890123456789",
"displayName": "example_value",
"description": "example_value"
}
],
"statuses": [
{
"id": "1234567890123456789",
"displayName": "example_value",
"emoji": "example_value",
"allowedTransitions": [
{
"targetStatusId": "1234567890123456789",
"buttonLabel": "example_value",
"requiresClaim": true,
"autoClaimOnTransition": true
}
]
}
],
"userReplyStatus": "OPEN",
"staffReplyStatus": "OPEN",
"remindersEnabled": true,
"reminderThresholds": [
{
"hoursWithoutResponse": 1,
"message": "example_value",
"pingStaff": true
}
],
"reminderCheckIntervalMinutes": 1,
"useModalFlow": true,
"templates": [
{
"categoryId": "1234567890123456789",
"modalTitle": "example_value",
"fields": [
{
"id": "1234567890123456789",
"label": "example_value",
"placeholder": "example_value",
"required": true,
"style": "example_value",
"minLength": 1,
"maxLength": 1
}
]
}
],
"maxOpenTicketsPerUser": 1,
"timeBetweenPings": 1,
"storeTranscripts": true,
"uploadTranscriptOnClose": true,
"autoCloseEnabled": true,
"autoCloseDays": 1,
"autoCloseStatus": "OPEN",
"autoCloseMessage": "example_value",
"autoDeleteClosedTickets": true,
"closedTicketRetentionDays": 1,
"blacklistedUserIds": [
"1234567890123456789"
],
"blacklistMessage": "example_value",
"activityLogChannelId": "1234567890123456789",
"transcriptChannelId": "1234567890123456789"
},
"features": [
{
"enabled": true,
"className": "example_value",
"initialDelayMs": 1,
"periodMs": 1
}
]
}