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:
authorGary Kim <gary@garykim.dev>2021-06-11 06:35:54 +0300
committerGary Kim <gary@garykim.dev>2021-07-15 20:54:35 +0300
commita35b98f8c15e19bde6098081b41e544e95e4b532 (patch)
treea9af9784cd16ae1c4321c8c29e1ab8996db57196 /appinfo/routes.php
parentddda9be34bd14f8ccf14521a6e100870493cd4b3 (diff)
Implement CloudFederationProvider for Talk
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 26ec3ccbd..d06380a6c 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -524,6 +524,27 @@ return [
],
/**
+ * Federation
+ */
+
+ [
+ 'name' => 'Federation#acceptShare',
+ 'url' => 'api/{apiVersion}/federation/pending/{id}',
+ 'verb' => 'POST',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ ],
+ ],
+ [
+ 'name' => 'Federation#rejectShare',
+ 'url' => 'api/{apiVersion}/federation/pending/{id}',
+ 'verb' => 'DELETE',
+ 'requirements' => [
+ 'apiVersion' => 'v1',
+ ],
+ ],
+
+ /**
* PublicShareAuth
*/
[