mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
Merge pull request #11012 from appwrite/chore-increase-jwt-abuse
Increase JWT abuse limit
This commit is contained in:
commit
d6a40a35ee
1 changed files with 2 additions and 1 deletions
|
|
@ -2955,7 +2955,8 @@ App::post('/v1/account/jwts')
|
|||
contentType: ContentType::JSON,
|
||||
))
|
||||
->param('duration', 900, new Range(0, 3600), 'Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.', true)
|
||||
->label('abuse-limit', 100)
|
||||
->label('abuse-limit', APP_LIMIT_WRITE_RATE_DEFAULT * 2)
|
||||
->label('abuse-time', APP_LIMIT_WRITE_RATE_PERIOD_DEFAULT)
|
||||
->label('abuse-key', 'url:{url},userId:{userId}')
|
||||
->inject('response')
|
||||
->inject('user')
|
||||
|
|
|
|||
Loading…
Reference in a new issue