fix: Add csrf_exempt to login view
This commit is contained in:
parent
f5913f2383
commit
30a7f5cd3e
@ -1,4 +1,7 @@
|
|||||||
from django.contrib.auth import authenticate, login, logout
|
from django.contrib.auth import authenticate, login, logout
|
||||||
|
from django.views.decorators.csrf import csrf_exempt
|
||||||
|
from django.utils.decorators import method_decorator
|
||||||
|
|
||||||
|
|
||||||
from rest_framework.decorators import action
|
from rest_framework.decorators import action
|
||||||
from rest_framework.permissions import AllowAny, IsAdminUser, IsAuthenticated
|
from rest_framework.permissions import AllowAny, IsAdminUser, IsAuthenticated
|
||||||
@ -77,6 +80,7 @@ class UserViewset(ActionBasedMixin, ModelViewSet):
|
|||||||
return Response(serializer.data)
|
return Response(serializer.data)
|
||||||
|
|
||||||
@action(detail=False, methods=["POST"])
|
@action(detail=False, methods=["POST"])
|
||||||
|
@method_decorator(csrf_exempt)
|
||||||
def login(self, request):
|
def login(self, request):
|
||||||
username = request.data["username"]
|
username = request.data["username"]
|
||||||
password = request.data["password"]
|
password = request.data["password"]
|
||||||
|
Loading…
Reference in New Issue
Block a user