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
|
|
|
"""Groups API Viewset"""
|
2019-10-28 13:27:43 +00:00
|
|
|
from rest_framework.serializers import ModelSerializer
|
|
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
|
|
|
|
from passbook.core.models import Group
|
|
|
|
|
|
|
|
|
|
|
|
class GroupSerializer(ModelSerializer):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""Group Serializer"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = Group
|
|
|
|
fields = ['pk', 'name', 'parent', 'user_set', 'attributes']
|
|
|
|
|
|
|
|
|
|
|
|
class GroupViewSet(ModelViewSet):
|
2019-10-28 13:44:46 +00:00
|
|
|
"""Group Viewset"""
|
2019-10-28 13:27:43 +00:00
|
|
|
|
|
|
|
queryset = Group.objects.all()
|
|
|
|
serializer_class = GroupSerializer
|