From 0c58317302c0eeea57dcbafa28b5150b82eba3de Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 22 Jan 2015 15:04:09 +0100 Subject: Implement support for secondary email addresses Each user can add a secondary email (well, more than one) and then pick one of those when sending email. Addresses are validated by sending a token to the newly added address, with a link to click to confirm it. Only a fully confirmed address can actually be used. --- pgcommitfest/urls.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pgcommitfest/urls.py') 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')), -- cgit v1.2.3