diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-05 22:50:08 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-05 22:50:08 -0400 |
commit | 56f02677940a00f04780cfb361fc65950e910bf8 (patch) | |
tree | 47b577eb5ccd4dcf662a8c44e3201150048c871b /urls.py | |
parent | b1e66ad9cc9ba1010fffb5259262464ed7635c2b (diff) | |
download | askbot-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.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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'), |