rearranged comment routes, more specific first
[zzz-floof.git] / floof / config / routing.py
index 5f729e6..645d138 100644 (file)
@@ -51,6 +51,9 @@ def make_map():
         sub.connect('/*owner_url/comments', action='thread')
         sub.connect('/*owner_url/comments/reply', action='reply')
         sub.connect('/*owner_url/comments/reply_done', action='reply_done', **require_POST)
+        sub.connect('/*owner_url/comments/{id}', action='thread')
+        sub.connect('/*owner_url/comments/{id}/reply', action='reply')
+        sub.connect('/*owner_url/comments/{id}/reply_done', action='reply_done', **require_POST)
 
     with map.submapper(controller="art") as sub:
         sub.connect('new_art',      '/art/new',         action="new")