use bucket limit in users/notes endpoint

This commit is contained in:
Hazelnoot 2025-10-22 22:34:00 -04:00
parent 94c4b401e6
commit ac0172b343

View file

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