Saroj Pradhan
Results
1
comments of
Saroj Pradhan
the solution for this issue in **django-taggit** is to import the built in TagListSerializerField from the **django-taggit** itself. ``` from taggit.serializers import TagListSerializerField, TaggitSerializer class BlogSerializer(TaggitSerializer, serializers.ModelSerializer): tags = TagListSerializerField(required=False)...