17 lines
418 B
Python
17 lines
418 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
from rest_framework import generics
|
|
|
|
from .serializers import ContentTypeSerializer
|
|
|
|
|
|
class APIContentTypeList(generics.ListAPIView):
|
|
"""
|
|
Returns a list of all the available content types.
|
|
"""
|
|
|
|
serializer_class = ContentTypeSerializer
|
|
queryset = ContentType.objects.order_by('app_label', 'model')
|