summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2023-02-09 05:18:03 +0100
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2023-02-15 22:00:45 +0100
commitbe3a4f2f0fd51fc62454165ba6ce4a9d33ce1e0a (patch)
treef5adc195d359c44436c13bb079fadc7c887aacca /appinfo
parent6fd10016b59a5a23920c5f0efc2d0777c1bb9a1f (diff)
Add specific page for recording calls
Instead of joining the call in the main Talk page now a specific page to be used only by the recording server was added. This will make possible to use a specific UI tailored for call recording, but also to use an internal client of the external signaling server rather than a normal participant. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesPageController.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/appinfo/routes/routesPageController.php b/appinfo/routes/routesPageController.php
index d9fe4baf4..0fcad372a 100644
--- a/appinfo/routes/routesPageController.php
+++ b/appinfo/routes/routesPageController.php
@@ -39,5 +39,7 @@ return [
['name' => 'Page#showCall', 'url' => '/call/{token}', 'root' => '', 'verb' => 'GET', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\PageController::authenticatePassword() */
['name' => 'Page#authenticatePassword', 'url' => '/call/{token}', 'root' => '', 'verb' => 'POST', 'requirements' => $requirements],
+ /** @see \OCA\Talk\Controller\PageController::recording() */
+ ['name' => 'Page#recording', 'url' => '/call/{token}/recording', 'root' => '', 'verb' => 'GET', 'requirements' => $requirements],
],
];