1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts
index cfdb0d1e..cd225407 100644
--- a/src/util/Config.ts
+++ b/src/util/Config.ts
@@ -45,6 +45,7 @@ export interface DefaultOptions {
ttsCharacters: number;
maxReactions: number;
maxAttachmentSize: number;
+ maxBulkDelete: number;
};
channel: {
maxPins: number;
@@ -124,6 +125,7 @@ export const DefaultOptions: DefaultOptions = {
ttsCharacters: 200,
maxReactions: 20,
maxAttachmentSize: 8388608,
+ maxBulkDelete: 100,
},
channel: {
maxPins: 50,
|