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 106aeb1..7eb3576 100644 --- a/pgcommitfest/urls.py +++ b/pgcommitfest/urls.py @@ -19,6 +19,11 @@ urlpatterns = patterns('', url(r'^selectable/', include('selectable.urls')), + # Auth system integration + (r'^(?:account/)?login/?$', 'auth.login'), + (r'^(?:account/)?logout/?$', 'auth.logout'), + (r'^auth_receive/$', 'auth.auth_receive'), + # Examples: # url(r'^$', 'pgcommitfest.views.home', name='home'), # url(r'^pgcommitfest/', include('pgcommitfest.foo.urls')), |