Improve documentation on quota.triggers[]

This commit is contained in:
Rory Powell 2022-10-12 11:38:16 +01:00
parent 84685d3340
commit f745be1b9c
1 changed files with 7 additions and 0 deletions

View File

@ -89,5 +89,12 @@ export type Quotas = {
export interface Quota {
name: string
value: number
/**
* Array of whole numbers (1-100) that dictate the percentage that this quota should trigger
* at in relation to the corresponding usage inside budibase.
*
* Triggering results in a budibase installation sending a request to account-portal,
* which can have subsequent effects such as sending emails to users.
*/
triggers: number[]
}