]> asedeno.scripts.mit.edu Git - bluechips.git/blobdiff - bluechips/config/routing.py
Make noauth actually work.
[bluechips.git] / bluechips / config / routing.py
index 199a1b42f4e88846a142887a1119c69ee332637c..4a95c3b588c21ae483fa87f9e7a732fb4b5aeae8 100644 (file)
@@ -18,9 +18,8 @@ def make_map():
     map.connect('error/:action/:id', controller='error')
 
     # CUSTOM ROUTES HERE
-
-    map.connect('/:controller')
-    map.connect('/:controller/', action='index')
+    map.connect('/', controller='status', action='index')
+    map.connect('/:controller', action='index')
     map.connect('/:controller/:action')
     map.connect('/:controller/:action/:id')