Add limit of 10 webhooks/team

This commit is contained in:
Tom Moor
2022-08-08 10:58:47 +02:00
parent dca9bc1598
commit b37a848914
2 changed files with 22 additions and 0 deletions

View File

@@ -41,3 +41,8 @@ export const TeamValidation = {
/** The maximum number of domains per team */
maxDomains: 10,
};
export const WebhookSubscriptionValidation = {
/** The maximum number of webhooks per team */
maxSubscriptions: 10,
};