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.
2020-09-02 22:04:12 +00:00
|
|
|
"""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
|
2020-11-04 09:41:18 +00:00
|
|
|
fields = ["pk", "name", "providers", "service_connection", "_config"]
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OutpostViewSet(ModelViewSet):
|
|
|
|
"""Outpost Viewset"""
|
|
|
|
|
|
|
|
queryset = Outpost.objects.all()
|
|
|
|
serializer_class = OutpostSerializer
|