From 15c80628ac612412504a531a6647b102e4d8e5b5 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 15 Apr 2021 09:45:05 +0200 Subject: [PATCH] Update storage.php --- app/controllers/api/storage.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/controllers/api/storage.php b/app/controllers/api/storage.php index 41a7a50e5f..f0ce2e4050 100644 --- a/app/controllers/api/storage.php +++ b/app/controllers/api/storage.php @@ -37,8 +37,6 @@ App::post('/v1/storage/files') ->label('sdk.response.code', Response::STATUS_CODE_CREATED) ->label('sdk.response.type', Response::CONTENT_TYPE_JSON) ->label('sdk.response.model', Response::MODEL_FILE) - ->label('abuse-limit', 50) - ->label('abuse-key', 'ip:{ip}') ->param('file', [], new File(), 'Binary file.', false) ->param('read', null, new ArrayList(new Text(64)), 'An array of strings with read permissions. By default only the current user is granted with read permissions. [learn more about permissions](/docs/permissions) and get a full list of available permissions.', true) ->param('write', null, new ArrayList(new Text(64)), 'An array of strings with write permissions. By default only the current user is granted with write permissions. [learn more about permissions](/docs/permissions) and get a full list of available permissions.', true)