summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-01-04 17:09:57 +0100
committerGitHub <noreply@github.com>2023-01-04 17:09:57 +0100
commitff782dbfde14a263d73de87641989ccb15c396cf (patch)
treebc4b78dd30f24f242b7511d4a26ffb3a232f68d9 /appinfo
parent7d9db57f9ed3572501987a6398caeac72d6872ac (diff)
parent0d3a83b7e9d434719c9f046d4caeced42718dd8c (diff)
Merge pull request #8492 from nextcloud/feature/store-recording
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesRecordingController.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/appinfo/routes/routesRecordingController.php b/appinfo/routes/routesRecordingController.php
index 88d4c576f..0477f8b75 100644
--- a/appinfo/routes/routesRecordingController.php
+++ b/appinfo/routes/routesRecordingController.php
@@ -34,5 +34,7 @@ return [
['name' => 'Recording#startRecording', 'url' => '/api/{apiVersion}/recording/{token}', 'verb' => 'POST', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\RecordingController::stopRecording() */
['name' => 'Recording#stopRecording', 'url' => '/api/{apiVersion}/recording/{token}', 'verb' => 'DELETE', 'requirements' => $requirements],
+ /** @see \OCA\Talk\Controller\RecordingController::store() */
+ ['name' => 'Recording#store', 'url' => '/api/{apiVersion}/recording/{token}/store', 'verb' => 'POST', 'requirements' => $requirements],
],
];