From 002e50c0afbd52cf9072c9dc7824391b73c1dec9 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 31 Oct 2020 19:17:53 +0200 Subject: [PATCH] Fixed webhooks error --- app/controllers/api/storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/storage.php b/app/controllers/api/storage.php index bd20fb569..2f20996f2 100644 --- a/app/controllers/api/storage.php +++ b/app/controllers/api/storage.php @@ -506,7 +506,7 @@ App::put('/v1/storage/files/:fileId') ; $response->dynamic($file, Response::MODEL_FILE); - }, ['response', 'projectDB', 'webhooks', 'audits']); + }, ['response', 'projectDB', 'audits']); App::delete('/v1/storage/files/:fileId') ->desc('Delete File')