django-rest-framework-docs
django-rest-framework-docs copied to clipboard
Support For Image Field ?
I am writing a serializer that need image as multipart/form-data.If Drfdocs supports that ?
My serializer is like this :
email = serializers.CharField(required=True)
phone_number = serializers.CharField(required=True)
image = serializers.ImageField(allow_empty_file=True,required=False)
how you resolve this ?