From 552582410df622d58da330ea712e83f1fa775c9b Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Sat, 30 Nov 2013 18:53:43 +0100 Subject: Don't use the search engine to display a user's posts --- hyperkitty/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'hyperkitty/urls.py') diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index e59c0ce..865d126 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -51,6 +51,7 @@ urlpatterns = patterns('hyperkitty.views', # Users url(r'^user/(?P[^/]+)/$', 'accounts.public_profile', name='public_user_profile'), + url(r'^user/(?P[^/]+)/posts$', 'accounts.posts', name='user_posts'), # List archives and overview url(r'^list/(?P[^/@]+@[^/@]+)/(?P\d{4})/(?P\d\d?)/(?P\d\d?)/$', -- cgit