From f5075fd88fc207df70585b7d78b2eee973d5c44c Mon Sep 17 00:00:00 2001 From: Axel Nitzschner Date: Tue, 7 Feb 2012 10:16:34 +0100 Subject: [PATCH] default route will now route to task_app before it pointed to director_app but this app has moved to a different place (github/anito/app.director) --- app/config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/routes.php b/app/config/routes.php index 6576d88b..171d2ebe 100755 --- a/app/config/routes.php +++ b/app/config/routes.php @@ -27,7 +27,7 @@ * its action called 'display', and we pass a param to select the view file * to use (in this case, /app/views/pages/home.ctp)... */ -Router::connect('/', array('controller' => 'director_app')); +Router::connect('/', array('controller' => 'tasks_app')); Router::connectNamed(array('passed')); Router::connect('/q/*', array('controller' => 'kodaks', 'action' => 'develop')); Router::connect('/git/*', array('controller' => 'gits', 'action' => 'exec'));