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-schluessler <raimund.schluessler@googlemail.com>2014-04-12 13:32:51 +0400
committerraimund-schluessler <raimund.schluessler@googlemail.com>2014-04-12 13:32:51 +0400
commit6e38fd5deaffce31f93fe05be9f81024885d572a (patch)
tree871f48d8741000703e904b5c6b1d4cb5b8e7596e /appinfo/routes.php
parent69edad25fa3b303bb23cb9d8dc081122f12ad191 (diff)
Fix creating tasks/lists with special characters
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 662a9d2e..3ca20210 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -47,7 +47,7 @@ $this->create('getLists', '/lists')
}
);
-$this->create('list_add', '/lists/add/{name}')
+$this->create('list_add', '/lists/add')
->post()
->action(
function($params){
@@ -131,7 +131,7 @@ $this->create('task_uncomplete', '/tasks/{taskID}/uncomplete')
}
);
-$this->create('task_add', '/tasks/add/{calendarID}/{name}')
+$this->create('task_add', '/tasks/add')
->post()
->action(
function($params){