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 skjnldsv
parent a221f720c7
commit 2fdb5096dd

View file

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