Projet10/softdesk/support/serializers.py
2025-05-25 21:21:41 +02:00

12 lines
315 B
Python

from rest_framework.serializers import ModelSerializer
from support.models import Project, Contributor, Issue, Comment
class ProjectSerializer(ModelSerializer):
class Meta:
model = Project
fields = ['title', 'date_created', 'type', 'description', 'author',
'contributors']