-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json.template
39 lines (39 loc) · 1.21 KB
/
config.json.template
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
{
"token": {
"defaultValue": "",
"dataType" : "string",
"isSensitive" : true,
"description" : "Your Telegram bot secret token",
"category" : "credentials"
},
"whitelist": {
"defaultValue": "",
"dataType" : "string",
"isSensitive" : false,
"description" : "A comma separated list of username/userid combo allowed to text Alice. Example: Psycho/12345678, Alice/87654321",
"category" : "system",
"onUpdate" : "refreshDatabase"
},
"blacklist": {
"defaultValue": "",
"dataType" : "string",
"isSensitive" : false,
"description" : "A comma separated list of username/userid combo banned from texting Alice. Example: Psycho/12345678, Alice/87654321",
"category" : "system",
"onUpdate" : "refreshDatabase"
},
"emergencyContact": {
"defaultValue": "",
"dataType" : "string",
"isSensitive" : false,
"description" : "A comma separated list of username/userid combo set as your emergency contact. Example: sue/12345678, bob/87654321",
"category" : "system"
},
"confirmEmergencyCall": {
"defaultValue": true,
"dataType" : "boolean",
"isSensitive" : false,
"description" : "Asks for confirmation before sending a emergency message",
"category" : "system"
}
}