gault-millau/apps/comment/serializers/back.py
Виктор Гладких 046d0c5fe6 Fix country and comment role
2019-10-25 10:59:31 +03:00

9 lines
287 B
Python

"""Comment app common serializers."""
from comment import models
from rest_framework import serializers
class CommentBaseSerializer(serializers.ModelSerializer):
class Meta:
model = models.Comment
fields = ('id', 'text', 'mark', 'user', 'object_id', 'content_type')