summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorVitor Mattos <vitor@php.rio>2022-12-26 11:38:57 -0300
committerVitor Mattos <vitor@php.rio>2022-12-26 11:38:57 -0300
commit94c14c08f7582e87736d97c536caaff1afd8a7cb (patch)
tree13bf97004eb3966ee0b1426c1633b7918fe0a871 /appinfo
parentec22f04af79679c3f51d0c0e3e0c5b10716665f5 (diff)
Add route to store recortings
Signed-off-by: Vitor Mattos <vitor@php.rio>
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],
],
];