increase rate limit for users/show endpoint

This commit is contained in:
Hazelnoot 2025-01-27 01:57:14 -05:00
parent 8a087e75a5
commit 1bedf954f2

View file

@ -57,10 +57,10 @@ export const meta = {
}, },
}, },
// 5 calls per 2 seconds // up to 50 calls @ 4 per second
limit: { limit: {
duration: 1000 * 2, max: 50,
max: 5, dripRate: 250,
}, },
} as const; } as const;