You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/config_help.json
+57Lines changed: 57 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1265,5 +1265,62 @@
1265
1265
"You can use `{min_characters}` as a placeholder for the minimum required characters.",
1266
1266
"See also: `thread_min_characters`, `thread_min_characters_title`, `thread_min_characters_response`."
1267
1267
]
1268
+
},
1269
+
"max_snooze_time": {
1270
+
"default": "604800 (7 days in seconds)",
1271
+
"description": "The maximum duration in seconds that a thread can be snoozed. When a thread is snoozed, it is temporarily hidden until the user replies or a moderator unsnoozes it.",
1272
+
"examples": [
1273
+
"`{prefix}config set max_snooze_time 86400` (1 day)",
1274
+
"`{prefix}config set max_snooze_time 1209600` (14 days)"
1275
+
],
1276
+
"notes": [
1277
+
"The value must be specified in seconds.",
1278
+
"See also: `snooze_title`, `snooze_text`, `unsnooze_text`, `unsnooze_notify_channel`."
1279
+
]
1280
+
},
1281
+
"snooze_title": {
1282
+
"default": "\"Thread Snoozed\"",
1283
+
"description": "This is the message embed title sent when a thread is snoozed.",
1284
+
"examples": [
1285
+
"`{prefix}config set snooze_title Thread Paused`"
1286
+
],
1287
+
"notes": [
1288
+
"See also: `snooze_text`, `unsnooze_title`, `max_snooze_time`."
1289
+
]
1290
+
},
1291
+
"snooze_text": {
1292
+
"default": "\"This thread has been snoozed. The channel will be restored when the user replies or a moderator unsnoozes it.\"",
1293
+
"description": "This is the message embed content sent when a thread is snoozed.",
1294
+
"examples": [
1295
+
"`{prefix}config set snooze_text This conversation is on hold temporarily.`"
1296
+
],
1297
+
"notes": [
1298
+
"Discord flavoured markdown is fully supported in `snooze_text`.",
1299
+
"See also: `snooze_title`, `unsnooze_text`, `max_snooze_time`."
1300
+
]
1301
+
},
1302
+
"unsnooze_text": {
1303
+
"default": "\"This thread has been unsnoozed and restored.\"",
1304
+
"description": "This is the message content sent when a thread is unsnoozed and restored.",
1305
+
"examples": [
1306
+
"`{prefix}config set unsnooze_text Thread has been reactivated.`"
1307
+
],
1308
+
"notes": [
1309
+
"Discord flavoured markdown is fully supported in `unsnooze_text`.",
1310
+
"See also: `snooze_text`, `unsnooze_notify_channel`, `max_snooze_time`."
1311
+
]
1312
+
},
1313
+
"unsnooze_notify_channel": {
1314
+
"default": "\"thread\"",
1315
+
"description": "This is the channel where the unsnooze notification will be sent. Set to \"thread\" to send in the thread's own channel, or provide a specific channel ID.",
1316
+
"examples": [
1317
+
"`{prefix}config set unsnooze_notify_channel thread`",
1318
+
"`{prefix}config set unsnooze_notify_channel 9234932582312` (9234932582312 is the channel ID)"
1319
+
],
1320
+
"notes": [
1321
+
"If set to \"thread\", the notification will be sent in the thread channel itself.",
1322
+
"If set to a channel ID, the notification will be sent to that specific channel.",
0 commit comments