Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-10-25 12:32:49 +0300
committerJulius Härtl <jus@bitgrid.net>2019-11-04 21:35:11 +0300
commit45490a60c0b043f0a871c587a0447de7d500c1ce (patch)
tree4d2b7b8fd3655b819a315ad049a41b49cabc3801 /appinfo
parentb1ba3db46e0ff78fc2e4011d859b1513b8e45a3f (diff)
Add workspace route and public page handling
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 299d1181a..12c8330a1 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -38,5 +38,9 @@ return [
['name' => 'PublicSession#sync', 'url' => '/public/session/sync', 'verb' => 'POST'],
['name' => 'PublicSession#push', 'url' => '/public/session/push', 'verb' => 'POST'],
['name' => 'PublicSession#close', 'url' => '/public/session/close', 'verb' => 'GET'],
+ ],
+ 'ocs' => [
+ ['name' => 'Workspace#folder', 'url' => '/workspace', 'verb' => 'GET'],
+ ['name' => 'Workspace#publicFolder', 'url' => '/public/workspace', 'verb' => 'GET'],
]
];