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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@googlemail.com>2015-05-24 13:09:05 +0300
committerRaimund Schlüßler <raimund.schluessler@googlemail.com>2015-05-24 13:09:05 +0300
commitef5f99f5c034af52afa308110f1480c50f2bb74d (patch)
treefe1a9edc6b4e23b15d8f5bf5427e7fea33327215 /appinfo/routes.php
parent91ed022080546d249af96e5aa689ad43c72e733c (diff)
First working implementation of category support
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index ffdb4771..a534ebe8 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -60,6 +60,8 @@ $application->registerRoutes($this, array('routes' => array(
array('name' => 'tasks#setReminderDate','url' => '/tasks/{taskID}/reminder', 'verb' => 'POST'),
array('name' => 'tasks#addComment', 'url' => '/tasks/{taskID}/comment', 'verb' => 'POST'),
array('name' => 'tasks#deleteComment', 'url' => '/tasks/{taskID}/comment/{commentID}/delete', 'verb' => 'POST'),
+ array('name' => 'tasks#addCategory', 'url' => '/tasks/{taskID}/category/add', 'verb' => 'POST'),
+ array('name' => 'tasks#removeCategory', 'url' => '/tasks/{taskID}/category/remove', 'verb' => 'POST'),
// settings
array('name' => 'settings#get', 'url' => '/settings', 'verb' => 'GET'),