Coverage for users\views.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from django.shortcuts import render
2from rest_framework.generics import ListCreateAPIView
3from rest_framework.permissions import IsAdminUser
5from .serializers import UserSerializer
6from .models import CustomUser
8class UserListView(ListCreateAPIView):
9 queryset = CustomUser.objects.all()
10 serializer_class = UserSerializer
11 # permission_classes = [IsAdminUser,]