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>2021-10-07 20:34:55 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-11 17:26:08 +0300
commit0c379ce84611f6a1c464c8d44ee96dd476621fcc (patch)
tree7d9a7d84d02353f2cc9c20ca55e0ec8a75339811 /appinfo
parentf772525127c6c60ac64d605258b977fb5604f942 (diff)
Add API to opt out of call notifications
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php9
2 files changed, 10 insertions, 1 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 96d097871..4b92ad5f3 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -16,7 +16,7 @@ And in the works for the [coming versions](https://github.com/nextcloud/spreed/m
]]></description>
- <version>13.0.0-dev.3</version>
+ <version>13.0.0-dev.4</version>
<licence>agpl</licence>
<author>Daniel Calviño Sánchez</author>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 7e155a0bb..fc874c6a1 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -464,6 +464,15 @@ return [
],
],
[
+ 'name' => 'Room#setNotificationCalls',
+ 'url' => '/api/{apiVersion}/room/{token}/notify-calls',
+ 'verb' => 'POST',
+ 'requirements' => [
+ 'apiVersion' => 'v(4)',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
'name' => 'Room#setLobby',
'url' => '/api/{apiVersion}/room/{token}/webinar/lobby',
'verb' => 'PUT',