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-03-03 14:54:25 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-08 13:56:19 +0300
commit79d52e679187a9bb26965855f153815e763666b0 (patch)
tree208519e5c5385a2da3f764f40b4af71664aaee07 /appinfo
parent5bff56f2cac21c1964e6f81be00d22e261d2d926 (diff)
Move lobby and SIP to v4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 7592b4872..4bf6276b6 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -437,21 +437,19 @@ return [
],
[
'name' => 'Room#setLobby',
- 'url' => '/api/{apiVersion}/room/{token}/{webinar}/lobby',
+ 'url' => '/api/{apiVersion}/room/{token}/webinar/lobby',
'verb' => 'PUT',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
- 'webinar' => 'webinary?',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
[
'name' => 'Room#setSIPEnabled',
- 'url' => '/api/{apiVersion}/room/{token}/{webinar}/sip',
+ 'url' => '/api/{apiVersion}/room/{token}/webinar/sip',
'verb' => 'PUT',
'requirements' => [
- 'apiVersion' => 'v3',
- 'webinar' => 'webinary?',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],