11 lines
210 B
Python
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__'
|