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 <213943+nickvergessen@users.noreply.github.com>2020-04-16 09:24:07 +0300
committerGitHub <noreply@github.com>2020-04-16 09:24:07 +0300
commit38a419922082953604d40e4fa671610f7df0a3b0 (patch)
treeac11484e29f9a7e75607a9a343c44eda33958543 /appinfo
parentb3f897815705b30b156a2f9b54ebd23cf9b4f6f8 (diff)
parent13fb5488d583d0ba184c66c671f66eca73f1e968 (diff)
Merge pull request #3274 from nextcloud/feature/noid/check-signaling-servers
Check the signaling server connection and show the version in the adm…
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index aa5b283bf..a11e86ef8 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -47,6 +47,15 @@ return [
],
],
[
+ 'name' => 'Signaling#getWelcomeMessage',
+ 'url' => '/api/{apiVersion}/signaling/welcome/{serverId}',
+ 'verb' => 'GET',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'serverId' => '^\d+$',
+ ],
+ ],
+ [
'name' => 'Signaling#backend',
'url' => '/api/{apiVersion}/signaling/backend',
'verb' => 'POST',