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')
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php9
2 files changed, 10 insertions, 1 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index bee26fcb4..0cdeb1807 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@ And in the works for the [coming versions](https://github.com/nextcloud/spreed/m
]]></description>
- <version>3.1.90</version>
+ <version>3.1.91</version>
<licence>agpl</licence>
<author>Daniel Calviño Sánchez</author>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 36fb91906..5a19618a0 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -265,6 +265,15 @@ return [
'token' => '^[a-z0-9]{4,30}$',
],
],
+ [
+ 'name' => 'Guest#setDisplayName',
+ 'url' => '/api/{apiVersion}/guest/{token}/name',
+ 'verb' => 'POST',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ 'token' => '^[a-z0-9]{4,30}$',
+ ],
+ ],
],
];