mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-22 19:46:34 +03:00
13 lines
389 B
Python
13 lines
389 B
Python
|
from rest_framework import generics
|
||
|
from rest_framework.permissions import IsAuthenticated
|
||
|
|
||
|
from common.permissions import IsAdmin
|
||
|
from users.api.serializers import UserSerializer
|
||
|
from users.models import User
|
||
|
|
||
|
|
||
|
class ListCreateUserApi(generics.ListCreateAPIView):
|
||
|
serializer_class = UserSerializer
|
||
|
permission_classes = [IsAuthenticated, IsAdmin]
|
||
|
queryset = User.objects.all()
|