Quotas & Limits
module.exports = {
rules: [
{
limit: 2000,
throttling: 'window-sliding',
window: 1000 * 60 * 60 * 24,
scope: 'userId',
resource: 'messages.send'
},
{
limit: 3,
window: 1000,
throttling: 'window-sliding',
queueing: 'fifo',
resource: 'messages.send',
scope: 'userId'
}
]
};Quota Module Structure
rules
limit
window
throttling
resource
Was this helpful?
