22 lines
545 B
Python
22 lines
545 B
Python
"""Invitation API Views"""
|
|
from rest_framework.serializers import ModelSerializer
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
from passbook.core.models import Invitation
|
|
|
|
|
|
class InvitationSerializer(ModelSerializer):
|
|
"""Invitation Serializer"""
|
|
|
|
class Meta:
|
|
|
|
model = Invitation
|
|
fields = ['pk', 'expires', 'fixed_username', 'fixed_email', 'needs_confirmation']
|
|
|
|
|
|
class InvitationViewSet(ModelViewSet):
|
|
"""Invitation Viewset"""
|
|
|
|
queryset = Invitation.objects.all()
|
|
serializer_class = InvitationSerializer
|