Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-03-18 11:23:24 +0300
committerJoas Schilling <coding@schilljs.com>2022-03-21 17:19:59 +0300
commit2397bd4fae0292e308207d4956aaf24fd94dcb38 (patch)
tree2d7ecba900c0b0fe52c4d4bc99296eb176f0c762 /appinfo
parent9822c9fb1c216e8e5071d256b06c71ff0cfb986f (diff)
Add an endpoint for a media tab
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes/routesChatController.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/appinfo/routes/routesChatController.php b/appinfo/routes/routesChatController.php
index 9b70c25b0..55f31b981 100644
--- a/appinfo/routes/routesChatController.php
+++ b/appinfo/routes/routesChatController.php
@@ -52,5 +52,7 @@ return [
['name' => 'Chat#mentions', 'url' => '/api/{apiVersion}/chat/{token}/mentions', 'verb' => 'GET', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\ChatController::shareObjectToChat() */
['name' => 'Chat#shareObjectToChat', 'url' => '/api/{apiVersion}/chat/{token}/share', 'verb' => 'POST', 'requirements' => $requirements],
+ /** @see \OCA\Talk\Controller\ChatController::getObjectsSharedInRoom() */
+ ['name' => 'Chat#getObjectsSharedInRoom', 'url' => '/api/{apiVersion}/chat/{token}/share', 'verb' => 'GET', 'requirements' => $requirements],
],
];