From e35408e32da036026be868b17e9b469d2955f9f2 Mon Sep 17 00:00:00 2001 From: chimpdev Date: Tue, 31 Dec 2024 00:56:11 +0300 Subject: [PATCH] fix(config): increase bot description max length to 4096 characters Refs: #152 --- client/config.js | 2 +- server/config.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/config.js b/client/config.js index 8ef20881..2b99804c 100644 --- a/client/config.js +++ b/client/config.js @@ -215,7 +215,7 @@ const config = { botShortDescriptionMinLength: 16, botShortDescriptionMaxLength: 150, botDescriptionMinLength: 32, - botDescriptionMaxLength: 2048, + botDescriptionMaxLength: 4096, templateMaxCategoriesLength: 3, templateDescriptionMinLength: 32, templateDescriptionMaxLength: 256, diff --git a/server/config.yml b/server/config.yml index 4487306a..fceed12e 100644 --- a/server/config.yml +++ b/server/config.yml @@ -149,7 +149,7 @@ reviewsMinCharacters: 64 botShortDescriptionMinLength: 16 botShortDescriptionMaxLength: 150 botDescriptionMinLength: 32 -botDescriptionMaxLength: 2048 +botDescriptionMaxLength: 4096 botWebhookTokenMaxLength: 256 serverWebhookTokenMaxLength: 256 templateMaxNameLength: 32