relax rate limit on /users endpoint

This commit is contained in:
Hazelnoot 2025-04-13 19:56:43 -04:00
parent 2d04c76260
commit d1682ee7cc

View file

@ -25,10 +25,11 @@ export const meta = {
},
},
// 2 calls per second
// 20 calls, then 4 per second
limit: {
duration: 1000,
max: 2,
type: 'bucket',
size: 20,
dripRate: 250,
},
} as const;