diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-01-31 23:37:09 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-01 16:37:23 +0100 |
commit | 0e944bed0d2f1774c2da52184ac30ab95dd8a11c (patch) | |
tree | 09d7cc08c91181580bc809b1aba7108805e711a0 /hyperkitty/urls.py | |
parent | 238d19f7e09bfa754f4b91622f1c34d08f2ef26d (diff) | |
download | hyperkitty-0e944bed0d2f1774c2da52184ac30ab95dd8a11c.tar.gz hyperkitty-0e944bed0d2f1774c2da52184ac30ab95dd8a11c.tar.xz hyperkitty-0e944bed0d2f1774c2da52184ac30ab95dd8a11c.zip |
Inline replies
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r-- | hyperkitty/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index 10b52ba..032a2a1 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -83,6 +83,9 @@ urlpatterns = patterns('hyperkitty.views', url(r'^vote/(?P<mlist_fqdn>.*@.*)/$', 'message.vote', name='message_vote'), + + url(r'^message/(?P<mlist_fqdn>.*@.*)/(?P<message_id>\w+)/reply$', + 'message.reply', name='message_reply'), ### MESSAGE LEVEL VIEW ENDS ### |