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 22:41:00 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-08 13:56:21 +0300
commit84fa5678e2c4460039abd2244eaeea8ce205ac75 (patch)
tree145ad09a7e365a346bbbd84e0af66b4202fac0da /appinfo/routes.php
parenta3cf504fda348e4e202328262895a3ffe7b65cc9 (diff)
Remove old API version handlings
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index c3da980a8..a2e125273 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -318,15 +318,6 @@ return [
],
],
[
- 'name' => 'Room#removeParticipantFromRoom',
- 'url' => '/api/{apiVersion}/room/{token}/participants',
- 'verb' => 'DELETE',
- 'requirements' => [
- 'apiVersion' => 'v(4)',
- 'token' => '^[a-z0-9]{4,30}$',
- ],
- ],
- [
'name' => 'Room#removeSelfFromRoom',
'url' => '/api/{apiVersion}/room/{token}/participants/self',
'verb' => 'DELETE',
@@ -336,15 +327,6 @@ return [
],
],
[
- 'name' => 'Room#removeGuestFromRoom',
- 'url' => '/api/{apiVersion}/room/{token}/participants/guests',
- 'verb' => 'DELETE',
- 'requirements' => [
- 'apiVersion' => 'v(4)',
- 'token' => '^[a-z0-9]{4,30}$',
- ],
- ],
- [
'name' => 'Room#removeAttendeeFromRoom',
'url' => '/api/{apiVersion}/room/{token}/attendees',
'verb' => 'DELETE',