mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-03-13 07:35:46 +03:00
12 lines
279 B
Python
12 lines
279 B
Python
|
from rest_framework import serializers
|
||
|
|
||
|
from press_release_nl.tickets.models import Ticket
|
||
|
|
||
|
|
||
|
class TicketSerializer(serializers.ModelSerializer):
|
||
|
current = serializers.IntegerField()
|
||
|
|
||
|
class Meta:
|
||
|
model = Ticket
|
||
|
fields = ["name", "current", "max", "next"]
|