aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/authtoken/views.py')
-rw-r--r--rest_framework/authtoken/views.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/rest_framework/authtoken/views.py b/rest_framework/authtoken/views.py
index e69de29b..a52f0a77 100644
--- a/rest_framework/authtoken/views.py
+++ b/rest_framework/authtoken/views.py
@@ -0,0 +1,19 @@
+from rest_framework.views import APIView
+from rest_framework.generics import CreateAPIView
+from rest_framework.authtoken.models import Token
+from rest_framework.authtoken.serializers import AuthTokenSerializer
+from django.http import HttpResponse
+
+class AuthTokenLoginView(CreateAPIView):
+ model = Token
+ serializer_class = AuthTokenSerializer
+
+
+class AuthTokenLogoutView(APIView):
+ def post(self, request):
+ if request.user.is_authenticated() and request.auth:
+ request.auth.delete()
+ return HttpResponse("logged out")
+ else:
+ return HttpResponse("not logged in")
+