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-09-01 13:20:50 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-07 19:18:29 +0300
commit20d722901fb244166b4b78535e4058c1910c93b5 (patch)
tree583cc56e36ad739ea3385106c2ce106a425cab72 /appinfo
parent4b3549db1f60048e93410b572a53fdaa4c9b90a4 (diff)
Allow setting publishing permissions for all users
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 59143fd5c..f54c01d5e 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -363,6 +363,15 @@ return [
],
],
[
+ 'name' => 'Room#setAllAttendeesPublishingPermissions',
+ 'url' => '/api/{apiVersion}/room/{token}/attendees/publishing-permissions/all',
+ 'verb' => 'PUT',
+ 'requirements' => [
+ 'apiVersion' => 'v(4)',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
+ [
'name' => 'Room#joinRoom',
'url' => '/api/{apiVersion}/room/{token}/participants/active',
'verb' => 'POST',