1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

Merge pull request #302 from sudenoh/master

Added property maxWebhooks to ConfigValue and defined a default value…
This commit is contained in:
Flam3rboy 2021-09-01 15:45:33 +02:00 committed by GitHub
commit b5456f10cc

View File

@ -74,6 +74,7 @@ export interface ConfigValue {
channel: {
maxPins: number;
maxTopic: number;
maxWebhooks: number;
};
rate: {
ip: Omit<RateLimitOptions, "bot_count">;
@ -183,6 +184,7 @@ export const DefaultConfigOptions: ConfigValue = {
channel: {
maxPins: 50,
maxTopic: 1024,
maxWebhooks: 10,
},
rate: {
ip: {