diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-08-30 17:58:36 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-08-30 17:58:36 +0200 |
commit | ec7da1aac20a01838d30e02d550c13b22414be73 (patch) | |
tree | 8ad108ca47f38e40348941e4c76269f621292e36 /hyperkitty/urls.py | |
parent | fe5985866065e2b77ef2c6b69e85b60153e89104 (diff) | |
download | hyperkitty-ec7da1aac20a01838d30e02d550c13b22414be73.tar.gz hyperkitty-ec7da1aac20a01838d30e02d550c13b22414be73.tar.xz hyperkitty-ec7da1aac20a01838d30e02d550c13b22414be73.zip |
Adapt to the new Storm-based KittyStore
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r-- | hyperkitty/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index 13a6f3f..5091f51 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -58,7 +58,7 @@ urlpatterns = patterns('hyperkitty.views', ### MESSAGE LEVEL VIEWS ### # Vote a message - url(r'^message/(?P<mlist_fqdn>.*@.*)/(?P<messageid>.+)/$', + url(r'^message/(?P<mlist_fqdn>.*@.*)/(?P<hashid>.+)/$', 'message.index', name='message_index'), url(r'^vote/(?P<mlist_fqdn>.*@.*)/$', @@ -80,7 +80,7 @@ urlpatterns = patterns('hyperkitty.views', # REST API url(r'^api/$', 'api.api'), - url(r'^api/email\/(?P<mlist_fqdn>.*@.*)\/(?P<messageid>.*)/', + url(r'^api/email\/(?P<mlist_fqdn>.*@.*)\/(?P<hashid>.*)/', EmailResource.as_view()), url(r'^api/thread\/(?P<mlist_fqdn>.*@.*)\/(?P<threadid>.*)/', ThreadResource.as_view()), |