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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-08-07 12:01:09 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-09-09 23:55:56 +0300
commitd015cd9c55b9e5b1e7899fbf7ae79fb5ab4c0beb (patch)
treea31cca6420a5200980adf3884b08d38a987db04d /apps/workflowengine/appinfo
parentbf6082e119d1c2420286dbcdbbfda1b1e196d9a0 (diff)
provides an OCS workflow controller for admins
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/workflowengine/appinfo')
-rw-r--r--apps/workflowengine/appinfo/routes.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/workflowengine/appinfo/routes.php b/apps/workflowengine/appinfo/routes.php
index 5ae74bcafc3..c650bee4cf2 100644
--- a/apps/workflowengine/appinfo/routes.php
+++ b/apps/workflowengine/appinfo/routes.php
@@ -26,5 +26,8 @@ return [
['name' => 'flowOperations#updateOperation', 'url' => '/operations/{id}', 'verb' => 'PUT'],
['name' => 'flowOperations#deleteOperation', 'url' => '/operations/{id}', 'verb' => 'DELETE'],
['name' => 'requestTime#getTimezones', 'url' => '/timezones', 'verb' => 'GET'],
- ]
+ ],
+ 'ocs-resources' => [
+ 'global_workflows' => ['url' => '/api/v1/workflows/global'],
+ ],
];