Skip to content

Commit

Permalink
fix(config): increase bot description max length to 4096 characters
Browse files Browse the repository at this point in the history
Refs: #152
  • Loading branch information
chimpdev committed Dec 30, 2024
1 parent 0dd41a7 commit e35408e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const config = {
botShortDescriptionMinLength: 16,
botShortDescriptionMaxLength: 150,
botDescriptionMinLength: 32,
botDescriptionMaxLength: 2048,
botDescriptionMaxLength: 4096,
templateMaxCategoriesLength: 3,
templateDescriptionMinLength: 32,
templateDescriptionMaxLength: 256,
Expand Down
2 changes: 1 addition & 1 deletion server/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ reviewsMinCharacters: 64
botShortDescriptionMinLength: 16
botShortDescriptionMaxLength: 150
botDescriptionMinLength: 32
botDescriptionMaxLength: 2048
botDescriptionMaxLength: 4096
botWebhookTokenMaxLength: 256
serverWebhookTokenMaxLength: 256
templateMaxNameLength: 32
Expand Down

0 comments on commit e35408e

Please sign in to comment.