mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 17:48:51 +00:00
10 lines
286 B
Python
10 lines
286 B
Python
from rest_framework import serializers
|
|
from spa.models.comment import Comment
|
|
|
|
|
|
class CommentSerialiser(serializers.HyperlinkedModelSerializer):
|
|
user = serializers.RelatedField(many=False)
|
|
|
|
class Meta:
|
|
model = Comment
|
|
fields = ('comment', 'date_created', 'user') |