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:35:46 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-08 13:56:20 +0300
commit7eaafce5b0ccca9aed108466be2a94e0004af748 (patch)
tree99680b329fbfc4ca232c41a8f40310fceb556e78 /appinfo/routes.php
parent4aee4e9969fc2c9944fc212c6b628c2a1aff4468 (diff)
Move other room APIs to v4
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index b772533ed..e9d46d015 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -340,7 +340,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/participants/guests',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -349,7 +349,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/attendees',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v3',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -367,7 +367,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/participants/resend-invitations',
'verb' => 'POST',
'requirements' => [
- 'apiVersion' => 'v3',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -403,7 +403,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/favorite',
'verb' => 'POST',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -412,7 +412,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/favorite',
'verb' => 'DELETE',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],
@@ -421,7 +421,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/pin/{pin}',
'verb' => 'GET',
'requirements' => [
- 'apiVersion' => 'v3',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
'pin' => '^\d{7,32}$',
],
@@ -431,7 +431,7 @@ return [
'url' => '/api/{apiVersion}/room/{token}/notify',
'verb' => 'POST',
'requirements' => [
- 'apiVersion' => 'v(1|2|3)',
+ 'apiVersion' => 'v(4)',
'token' => '^[a-z0-9]{4,30}$',
],
],