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>2017-10-26 17:10:58 +0300
committerIvan Sein <ivan@struktur.de>2017-11-03 15:04:52 +0300
commiteae71a3977068b578c590982c3b9ebacf9f23074 (patch)
tree3afa99773cd4cf27234d7da25a13c11072afb66b /appinfo
parentd83c3d250eb249f3308b7fc7925272ddf756e8ef (diff)
Split joining a room and joining a call API wise
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php18
2 files changed, 19 insertions, 1 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 07590aebf..60837b272 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -38,7 +38,7 @@ And in the works for the [coming versions](https://github.com/nextcloud/spreed/m
<bugs>https://github.com/nextcloud/spreed/issues</bugs>
<repository type="git">https://github.com/nextcloud/spreed.git</repository>
- <version>2.1.9</version>
+ <version>2.1.10</version>
<dependencies>
<nextcloud min-version="13" max-version="13" />
diff --git a/appinfo/routes.php b/appinfo/routes.php
index c0aed8a5c..11f867dd6 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -222,6 +222,24 @@ return [
],
],
[
+ 'name' => 'Room#joinRoom',
+ 'url' => '/api/{apiVersion}/room/{token}/participants/active',
+ 'verb' => 'POST',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
+ 'name' => 'Room#exitRoom',
+ 'url' => '/api/{apiVersion}/room/{token}/participants/active',
+ 'verb' => 'DELETE',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
'name' => 'Room#promoteModerator',
'url' => '/api/{apiVersion}/room/{token}/moderators',
'verb' => 'POST',