summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-01-05 06:58:23 +0100
committerGitHub <noreply@github.com>2023-01-05 06:58:23 +0100
commitc11d5ae46495f9ca9680cc12e35d7b012e0d019e (patch)
tree799af6ec960d24baca6da1528419d018fb2f0144 /appinfo
parent9219d6f7a066ad5b4a93c37a905b4501b47fcbd5 (diff)
parentc08f92ead569d8dc380fb5bf560ef08b04722953 (diff)
Merge pull request #8525 from nextcloud/feature/move-recording-methods
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesRecordingController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/appinfo/routes/routesRecordingController.php b/appinfo/routes/routesRecordingController.php
index 0477f8b75..4e9dc7d4a 100644
--- a/appinfo/routes/routesRecordingController.php
+++ b/appinfo/routes/routesRecordingController.php
@@ -30,10 +30,10 @@ $requirements = [
return [
'ocs' => [
- /** @see \OCA\Talk\Controller\RecordingController::startRecording() */
- ['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::start() */
+ ['name' => 'Recording#start', 'url' => '/api/{apiVersion}/recording/{token}', 'verb' => 'POST', 'requirements' => $requirements],
+ /** @see \OCA\Talk\Controller\RecordingController::stop() */
+ ['name' => 'Recording#stop', '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],
],