Mercurial > public > sg101
diff gpp/antispam/urls.py @ 215:8c1832b9d815
Implement #84; additional checks on spammers; implement stranger status.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 29 May 2010 04:51:28 +0000 |
parents | |
children | ddd69a8e07c7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/antispam/urls.py Sat May 29 04:51:28 2010 +0000 @@ -0,0 +1,6 @@ +"""URLs for the antispam application.""" +from django.conf.urls.defaults import * + +urlpatterns = patterns('antispam.views', + url(r'^suspended/$', 'suspended', name='antispam-suspended'), +)