This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.http import Http404 | |
from rest_framework.mixins import ListModelMixin | |
from rest_framework.response import Response | |
class ShortListModelMixin(ListModelMixin): | |
""" | |
Extends ListModelMixin, | |
allowing the specification of the list_fields arguments for the .list() method | |
different fields can be shown for list and detail views | |
""" |