Marc Debureaux
Marc Debureaux
For information, this issue is solved in https://github.com/debnet/django-rest-framework-docs A second pull request will follow as soon as we merged upstream/master.
In my opinion, the code is much clearer that way and it provides some new appreciable features. We use it everyday in production environment, but if you would to slice...
Seems to work for me. Could you provide more details @busla? 
Merge 0.0.11 and allow list in `drf_router` instead of a single one for multi-app purposes.
Hurray! \o/
A lot of new webservice clients and communication protocols use SOAP 1.2, for example .NET WCF services which are more and more common through time (unfortunatly). We really hope a...
It's possible to ping a Discord user from IRC by using a dedicated format: ``. The Discord user ID is internal to Discord but can be obtained by right-clicking the...
I tried something like this but it doesn't work, and the documentation is not helpful. ```python class CustomCountryField(fields.TextField): def serialize(self, data): return data.code @registry.register_document class ArticleDocument(Document): country = CustomCountryField() ......
I managed to workaround by overriding `get_value_from_instance` method. ```python class CustomCountryField(fields.TextField): def get_value_from_instance(self, instance, field_value_to_ignore=None): value = super().get_value_from_instance(instance, field_value_to_ignore) return value.code if value else "" ```