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:
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index c0aed8a5c..11f867dd6 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -222,6 +222,24 @@ return [
],
],
[
+ 'name' => 'Room#joinRoom',
+ 'url' => '/api/{apiVersion}/room/{token}/participants/active',
+ 'verb' => 'POST',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
+ 'name' => 'Room#exitRoom',
+ 'url' => '/api/{apiVersion}/room/{token}/participants/active',
+ 'verb' => 'DELETE',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
'name' => 'Room#promoteModerator',
'url' => '/api/{apiVersion}/room/{token}/moderators',
'verb' => 'POST',