You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
406 B
13 lines
406 B
from rest_framework import permissions
|
|
from rest_framework.generics import CreateAPIView
|
|
#from django.contrib.auth import get_user_model # If used custom user model
|
|
|
|
from .serializers import UserSerializer
|
|
|
|
class CreateUserView(CreateAPIView):
|
|
|
|
#model = get_user_model()
|
|
permission_classes = [
|
|
permissions.AllowAny # Or anon users can't register
|
|
]
|
|
serializer_class = UserSerializer
|
|
|