Users namespace index and a quick userlist.
[zzz-floof.git] / floof / config / routing.py
index c8f9e4e..37be4c2 100644 (file)
@@ -29,6 +29,9 @@ def make_map():
     map.connect('/account/register', controller='account', action='register')
     map.connect('/account/register_finish', controller='account', action='register_finish', **require_POST)
 
+    map.connect('/users', controller='users', action='list')
+    map.connect('/users/{name}', controller='users', action='view')
+
     map.connect('/search', controller='search', action='index')
 
     return map