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:08:11 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-08 13:56:19 +0300
commit3a680dc3fb3c126b8fa7b879cf3667fc54bc3de4 (patch)
tree4b3d29c8b753a156d517f3a80b0935ea253844ae /appinfo
parent6c0246bc372d83602a735f8cafd87c248d4106e2 (diff)
Move removing paricipants to v4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index b79ec6400..0c981d263 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -322,7 +322,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/participants',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -331,7 +331,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/participants/self',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],