korabo/api/serializers/event_comment.py

11 lines
210 B
Python

from rest_framework import serializers
from web.models import EventComment
class EventCommentSerializer(serializers.ModelSerializer):
class Meta:
model = EventComment
fields = '__all__'