Python rest_framework.serializers.HyperlinkedModelSerializer() Examples

The following are 1 code examples of rest_framework.serializers.HyperlinkedModelSerializer(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module rest_framework.serializers , or try the search function .
Example #1
Source File: renderers.py    From ChRIS_ultron_backEnd with MIT License 5 votes vote down vote up
def _get_id_field(self, serializer):
        if isinstance(serializer, HyperlinkedModelSerializer):
            return serializer.url_field_name
        else:
            return None