diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-26 22:47:31 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-26 22:47:31 -0400 |
commit | 05fb6553471025af8bb090cd812651816c1c59fc (patch) | |
tree | 9c5f5714b680940882023608d38fbe5b36cc9c6d /app/common.php | |
parent | bd023430c8b35f655ef031c6c8d4f6f0bdc188f8 (diff) |
Move tasks Gantt chart
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/common.php b/app/common.php index 8c1074d6..1f1c7273 100644 --- a/app/common.php +++ b/app/common.php @@ -113,18 +113,15 @@ if (ENABLE_URL_REWRITE) { // Board routes $container['router']->addRoute('board/:project_id', 'board', 'show', array('project_id')); $container['router']->addRoute('b/:project_id', 'board', 'show', array('project_id')); - $container['router']->addRoute('board/:project_id/filter/:search', 'board', 'show', array('project_id', 'search')); $container['router']->addRoute('public/board/:token', 'board', 'readonly', array('token')); // Calendar routes $container['router']->addRoute('calendar/:project_id', 'calendar', 'show', array('project_id')); $container['router']->addRoute('c/:project_id', 'calendar', 'show', array('project_id')); - $container['router']->addRoute('calendar/:project_id/:search', 'calendar', 'show', array('project_id', 'search')); // Listing routes $container['router']->addRoute('list/:project_id', 'listing', 'show', array('project_id')); $container['router']->addRoute('l/:project_id', 'listing', 'show', array('project_id')); - $container['router']->addRoute('list/:project_id/:search', 'listing', 'show', array('project_id', 'search')); // Gantt routes $container['router']->addRoute('gantt/:project_id', 'gantt', 'project', array('project_id')); |