Merge pull request #11012 from appwrite/chore-increase-jwt-abuse

Increase JWT abuse limit
This commit is contained in:
Matej Bačo 2025-12-23 15:48:00 +01:00 committed by GitHub
commit d6a40a35ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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')