fix(files_sharing): adjust rate limit share creation to 20 over 10 minutes

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
This commit is contained in:
John Molakvoæ 2025-04-15 10:32:47 +02:00 committed by GitHub
parent 75063cd71b
commit 50dcbdeec6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -558,7 +558,7 @@ class ShareAPIController extends OCSController {
* 200: Share created
*/
#[NoAdminRequired]
#[UserRateLimit(limit: 10, period: 600)]
#[UserRateLimit(limit: 20, period: 600)]
public function createShare(
?string $path = null,
?int $permissions = null,