Zach Kauffman
Zach Kauffman
Add support for field-level examples from meta class … This code allows us to add field-level `example`s. Usage: ```python class SomeSerializer(serializers.Serializer): some_date = serializers.DateField() class Meta: swagger_schema_examples = { 'some_date':...
Hey - cool project! I'm trying to run portray in some of my django projects but am running into issues. They appear to be django specific, so apologies if you're...
First off, awesome library! Running into an issue with some custom `ModelViewSet` methods not showing anything in their responses. To deal with it, I added a method decorator: ```python @method_decorator(...