diff options
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r-- | pgcommitfest/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py index a715c71..46e0332 100644 --- a/pgcommitfest/urls.py +++ b/pgcommitfest/urls.py @@ -31,6 +31,11 @@ urlpatterns = patterns('', (r'^(?:account/)?logout/?$', 'auth.logout'), (r'^auth_receive/$', 'auth.auth_receive'), + # Account management + (r'^account/profile/$', 'userprofile.views.userprofile'), + (r'^account/profile/delmail/$', 'userprofile.views.deletemail'), + (r'^account/profile/confirm/([0-9a-f]+)/$', 'userprofile.views.confirmemail'), + # Examples: # url(r'^$', 'pgcommitfest.views.home', name='home'), # url(r'^pgcommitfest/', include('pgcommitfest.foo.urls')), |