summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorVitor Mattos <vitor@php.rio>2022-12-12 19:41:31 -0300
committerVitor Mattos <vitor@php.rio>2022-12-12 19:43:23 -0300
commite4637c57ddddd6a40960bafc23a8d9e546bca619 (patch)
treeb3b055d9e8c3da1e4ac6e10f4d7ff11fa98c21f2 /appinfo
parent8d8955bbfbe0488207f40808e9a2437946ab13da (diff)
Fixes after push
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesCallController.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/appinfo/routes/routesCallController.php b/appinfo/routes/routesCallController.php
index 9c4e5b4f8..83632bc9d 100644
--- a/appinfo/routes/routesCallController.php
+++ b/appinfo/routes/routesCallController.php
@@ -28,11 +28,6 @@ $requirements = [
'token' => '[a-z0-9]{4,30}',
];
-$requirementsRecording = [
- 'apiVersion' => 'v1',
- 'token' => '[a-z0-9]{4,30}',
-];
-
return [
'ocs' => [
/** @see \OCA\Talk\Controller\CallController::getPeersForCall() */
@@ -45,9 +40,5 @@ return [
['name' => 'Call#updateCallFlags', 'url' => '/api/{apiVersion}/call/{token}', 'verb' => 'PUT', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\CallController::leaveCall() */
['name' => 'Call#leaveCall', 'url' => '/api/{apiVersion}/call/{token}', 'verb' => 'DELETE', 'requirements' => $requirements],
- /** @see \OCA\Talk\Controller\CallController::startRecording() */
- ['name' => 'Call#startRecording', 'url' => '/api/{apiVersion}/call/{token}/recording', 'verb' => 'POST', 'requirements' => $requirementsRecording],
- /** @see \OCA\Talk\Controller\CallController::stopRecording() */
- ['name' => 'Call#stopRecording', 'url' => '/api/{apiVersion}/call/{token}/recording', 'verb' => 'DELETE', 'requirements' => $requirementsRecording],
],
];