This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-28 13:44:46 +00:00
|
|
|
"""User API Views"""
|
2020-09-15 20:37:31 +00:00
|
|
|
from rest_framework.serializers import BooleanField, ModelSerializer
|
2019-10-28 13:27:43 +00:00
|
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
|
|
|
|
from passbook.core.models import User
|
|
|
|
|
|
|
|
|
|
|
|
class UserSerializer(ModelSerializer):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""User Serializer"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
2020-09-15 20:37:31 +00:00
|
|
|
is_superuser = BooleanField(read_only=True)
|
|
|
|
|
2019-10-28 13:27:43 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = User
|
2020-09-15 20:37:31 +00:00
|
|
|
fields = ["pk", "username", "name", "is_superuser", "email"]
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserViewSet(ModelViewSet):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""User Viewset"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
queryset = User.objects.all()
|
|
|
|
serializer_class = UserSerializer
|