Add trailing slash to auth url. Refs: #248

This commit is contained in:
Tom Christie 2012-09-05 10:04:45 +01:00
parent 51f4317058
commit 0fc5a49a11

View File

@ -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.