aboutsummaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorJulien Veyssier <julien-nc@posteo.net>2023-08-02 16:47:41 +0200
committerJulien Veyssier <julien-nc@posteo.net>2023-08-07 13:27:53 +0200
commit9986e02097e5c82e1bb21ba3f897b14d82a50c15 (patch)
tree5210b08607f7e841b9864ffbea153e4ee5b54026 /core/routes.php
parentb4a3f8088ab4ccb53c25ee316fe9b575b41b36f8 (diff)
downloadnextcloud-server-9986e02097e5c82e1bb21ba3f897b14d82a50c15.tar.gz
nextcloud-server-9986e02097e5c82e1bb21ba3f897b14d82a50c15.zip
start implementing ocs endpoint to get task list from user+appId+identifier
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php
index 4790f32af32..90578ee6f0d 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -149,6 +149,7 @@ $application->registerRoutes($this, [
['root' => '/textprocessing', 'name' => 'TextProcessingApi#taskTypes', 'url' => '/tasktypes', 'verb' => 'GET'],
['root' => '/textprocessing', 'name' => 'TextProcessingApi#schedule', 'url' => '/schedule', 'verb' => 'POST'],
['root' => '/textprocessing', 'name' => 'TextProcessingApi#getTask', 'url' => '/task/{id}', 'verb' => 'GET'],
+ ['root' => '/textprocessing', 'name' => 'TextProcessingApi#listTasksByApp', 'url' => '/tasks/app/{appId}', 'verb' => 'GET'],
],
]);