24 lines
526 B
Python
24 lines
526 B
Python
|
"""Outpost API Views"""
|
||
|
from rest_framework.serializers import JSONField, ModelSerializer
|
||
|
from rest_framework.viewsets import ModelViewSet
|
||
|
|
||
|
from passbook.outposts.models import Outpost
|
||
|
|
||
|
|
||
|
class OutpostSerializer(ModelSerializer):
|
||
|
"""Outpost Serializer"""
|
||
|
|
||
|
_config = JSONField()
|
||
|
|
||
|
class Meta:
|
||
|
|
||
|
model = Outpost
|
||
|
fields = ["pk", "name", "providers", "_config"]
|
||
|
|
||
|
|
||
|
class OutpostViewSet(ModelViewSet):
|
||
|
"""Outpost Viewset"""
|
||
|
|
||
|
queryset = Outpost.objects.all()
|
||
|
serializer_class = OutpostSerializer
|