mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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:
parent
75063cd71b
commit
50dcbdeec6
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue