DRF_Template/backend/accounts/views.py

6 lines
229 B
Python
Raw Normal View History

2024-01-06 12:13:39 +08:00
from rest_framework.permissions import IsAuthenticated
from rest_framework import generics
from accounts.serializers import CustomUserSerializer
from rest_framework.response import Response
from accounts.models import CustomUser