summaryrefslogtreecommitdiff
path: root/django/contrib/auth/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/auth/urls.py')
-rw-r--r--django/contrib/auth/urls.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/django/contrib/auth/urls.py b/django/contrib/auth/urls.py
new file mode 100644
index 0000000000..3fd7cb47ad
--- /dev/null
+++ b/django/contrib/auth/urls.py
@@ -0,0 +1,12 @@
+# This exists for the sake of testing only. Normally URLs are mapped in
+# ../admin/urls.py
+
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('',
+ ('^logout/$', 'django.contrib.auth.views.logout'),
+ ('^password_change/$', 'django.contrib.auth.views.password_change'),
+ ('^password_change/done/$', 'django.contrib.auth.views.password_change_done'),
+ ('^password_reset/$', 'django.contrib.auth.views.password_reset')
+)
+