aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken/urls.py
diff options
context:
space:
mode:
authorRob Romano2012-11-10 16:17:50 -0800
committerRob Romano2012-11-14 12:46:14 -0800
commitbd92db3c672137fa68185dbc0f453f7cea7caff3 (patch)
tree6e585d094b68b51e0a2dee9c83a536536f275d94 /rest_framework/authtoken/urls.py
parent4a2526bd1e067104a1553a3e158016fe9ad285bb (diff)
downloaddjango-rest-framework-bd92db3c672137fa68185dbc0f453f7cea7caff3.tar.bz2
Added authtoken login/logout urlpatterns and views
Diffstat (limited to 'rest_framework/authtoken/urls.py')
-rw-r--r--rest_framework/authtoken/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rest_framework/authtoken/urls.py b/rest_framework/authtoken/urls.py
index 2a3e8115..8bea46c0 100644
--- a/rest_framework/authtoken/urls.py
+++ b/rest_framework/authtoken/urls.py
@@ -13,9 +13,9 @@ your authentication settings include `TokenAuthentication`.
)
"""
from django.conf.urls.defaults import patterns, url
-from rest_framework.authtoken.views import AuthTokenView
+from rest_framework.authtoken.views import AuthTokenLoginView, AuthTokenLogoutView
urlpatterns = patterns('rest_framework.authtoken.views',
- url(r'^login/$', AuthTokenView.as_view(), name='token_login'),
-# url(r'^logout/$', 'token_logout', name='token_logout'),
+ url(r'^login/$', AuthTokenLoginView.as_view(), name='token_login'),
+ url(r'^logout/$', AuthTokenLogoutView.as_view(), name='token_logout'),
)