aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2012-09-05 10:04:45 +0100
committerTom Christie2012-09-05 10:04:45 +0100
commit0fc5a49a114ca65aab90dcf039da1569dde3c499 (patch)
treec398fc7763c7752ae8d64a062adaf47109dd4a5c
parent51f43170587a1d679ab99f9c0e96fee566469d0c (diff)
downloaddjango-rest-framework-0fc5a49a114ca65aab90dcf039da1569dde3c499.tar.bz2
Add trailing slash to auth url. Refs: #248
-rw-r--r--docs/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst
index ec12a7b0..d906120e 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -68,7 +68,7 @@ To add Django REST framework to a Django project:
urlpatterns = patterns('',
...
- url(r'^restframework', include('djangorestframework.urls', namespace='djangorestframework'))
+ url(r'^api-auth/', include('djangorestframework.urls', namespace='djangorestframework'))
)
For more information on settings take a look at the :ref:`setup` section.