X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ee952326340b2251b42db34f4823b0495338be86..c68928f2fc57638134bae50fe4ff5b1e979bb198:/floof/config/routing.py diff --git a/floof/config/routing.py b/floof/config/routing.py index ffce2d6..5f729e6 100644 --- a/floof/config/routing.py +++ b/floof/config/routing.py @@ -46,6 +46,11 @@ def make_map(): map.connect('/users', controller='users', action='list') map.connect('user_page', '/users/{name}', controller='users', action='view') + # Comments + with map.submapper(controller='comments') as sub: + 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) with map.submapper(controller="art") as sub: sub.connect('new_art', '/art/new', action="new")