mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-08 16:21:09 -06:00
feat: increase rate limit for client api endpoints (#1904)
This commit is contained in:
committed by
GitHub
parent
4f61b4320f
commit
e896a737f4
@@ -120,8 +120,8 @@ export const LOGIN_RATE_LIMIT = {
|
||||
allowedPerInterval: 30,
|
||||
};
|
||||
export const CLIENT_SIDE_API_RATE_LIMIT = {
|
||||
interval: 10 * 15 * 1000, // 15 minutes
|
||||
allowedPerInterval: 60,
|
||||
interval: 5 * 60 * 1000, // 5 minutes
|
||||
allowedPerInterval: 100,
|
||||
};
|
||||
export const SHARE_RATE_LIMIT = {
|
||||
interval: 60 * 60 * 1000, // 60 minutes
|
||||
|
||||
Reference in New Issue
Block a user