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>2019-10-09 12:48:35 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-10 12:19:22 +0300
commit672409118ad37b6e66d1561f92e9d9a553b1452f (patch)
treecda6d12b623abda7c81cc49c92c735c0c0f8d70c /appinfo/routes.php
parentd689e32190592927252a6e1afbee86b6a2762143 (diff)
Update the Webinar(y) controller to the latest
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 5603142c1..a016b6949 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -140,7 +140,7 @@ return [
],
/**
- * Room
+ * Conversation (Room)
*/
[
'name' => 'Room#getRooms',
@@ -403,14 +403,15 @@ return [
],
/**
- * Webinary
+ * Webinar
*/
[
- 'name' => 'Webinary#setLobby',
- 'url' => '/api/{apiVersion}/room/{token}/webinary/lobby',
+ 'name' => 'Webinar#setLobby',
+ 'url' => '/api/{apiVersion}/room/{token}/{webinar}/lobby',
'verb' => 'PUT',
'requirements' => [
'apiVersion' => 'v1',
+ 'webinar' => 'webinary?',
'token' => '^[a-z0-9]{4,30}$',
],
],