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-04 15:34:06 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-08 13:56:20 +0300
commit4aee4e9969fc2c9944fc212c6b628c2a1aff4468 (patch)
tree02777a0651f1cefccbe49e82b1753b40a0efe9dc /appinfo
parent0aedba550316636c6e33e9143c2972cf7f86135a (diff)
Move other participant handling to API v4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 6596abb3a..b772533ed 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -313,7 +313,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/participants',
'verb' => 'POST',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -385,7 +385,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/moderators',
'verb' => 'POST',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -394,7 +394,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/moderators',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],