Commit: e82d9ceedc82fbcfef4093ebd3bb9f53cc397ee9
Author: gwoo | Date: 2010-01-27 20:50:59 -0800
diff --git a/config/routes.php b/config/routes.php
index c588c6a..9ef3661 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -14,7 +14,10 @@ Router::connect('/lab', array(
Router::connect('/lab/{:args}.json', array(
'plugin' => 'li3_lab', 'controller' => 'plugins', 'action' => 'view', 'type' => 'json'
));
+Router::connect('/lab/download/{:args}.phar.gz', array(
+ 'plugin' => 'li3_lab', 'controller' => 'plugins', 'action' => 'download'
+));
Router::connect('/lab/{:controller}/{:action}/{:args}', array(
- 'plugin' => 'li3_lab', 'controller' => 'plugins'
+ 'plugin' => 'li3_lab', 'controller' => 'home'
));
?>