summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-05 22:50:08 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-05 22:50:08 -0400
commit56f02677940a00f04780cfb361fc65950e910bf8 (patch)
tree47b577eb5ccd4dcf662a8c44e3201150048c871b /urls.py
parentb1e66ad9cc9ba1010fffb5259262464ed7635c2b (diff)
downloadaskbot-56f02677940a00f04780cfb361fc65950e910bf8.tar.gz
askbot-56f02677940a00f04780cfb361fc65950e910bf8.tar.bz2
askbot-56f02677940a00f04780cfb361fc65950e910bf8.zip
added anonymous posting, per-question subscription and fixes by Pothers and some more, see development.log
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 802d401c..eb28cf69 100644
--- a/urls.py
+++ b/urls.py
@@ -23,6 +23,9 @@ urlpatterns = patterns('',
),
(r'^account/', include('django_authopenid.urls')),
(r'^signin/$', 'django_authopenid.views.signin'),
+ url(r'^email/change/$', 'django_authopenid.views.changeemail', name='user_changeemail'),
+ url(r'^email/sendkey/$', 'django_authopenid.views.send_email_key'),
+ url(r'^email/verify/(?P<id>\d+)/(?P<key>[\dabcdef]{32})/$', 'django_authopenid.views.verifyemail', name='user_verifyemail'),
url(r'^about/$', app.about, name='about'),
url(r'^faq/$', app.faq, name='faq'),
url(r'^privacy/$', app.privacy, name='privacy'),