summary refs log tree commit diff
path: root/util/src/config/types/subconfigurations/limits/ChannelLimits.ts
blob: 2f8f948599f7ffac1ba3f34f8d20d1e956659758 (plain) (blame)
1
2
3
4
5
export class ChannelLimits {
    maxPins: number = 500;
    maxTopic: number = 1024;
    maxWebhooks: number = 100;
}