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

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
pull/50905/head
John Molakvoæ 2025-04-15 10:32:47 +07:00 committed by GitHub
parent 75063cd71b
commit 50dcbdeec6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -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,