X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;ds=sidebyside;f=bluechips%2Fconfig%2Frouting.py;h=4a95c3b588c21ae483fa87f9e7a732fb4b5aeae8;hb=afa1282a519cc7bda8e11082914ef4045139f113;hp=199a1b42f4e88846a142887a1119c69ee332637c;hpb=58a3e99944ba13a924cb7480da9b3b6e84b1ac66;p=bluechips.git diff --git a/bluechips/config/routing.py b/bluechips/config/routing.py index 199a1b4..4a95c3b 100644 --- a/bluechips/config/routing.py +++ b/bluechips/config/routing.py @@ -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')