diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-04-15 10:32:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-15 10:32:47 +0200 |
commit | 50dcbdeec6d6ea87bc29406962ba68002dee2c78 (patch) | |
tree | 3477c690f1a02201d8756cd1b0e148ad57d7ca26 | |
parent | 75063cd71b9ae6129717472a1a99567ebe27a4f2 (diff) | |
download | nextcloud-server-50dcbdeec6d6ea87bc29406962ba68002dee2c78.tar.gz nextcloud-server-50dcbdeec6d6ea87bc29406962ba68002dee2c78.zip |
fix(files_sharing): adjust rate limit share creation to 20 over 10 minutes
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareAPIController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index cffe82beb1c..65061a1384d 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -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, |