diff --git a/report_builder/api/views.py b/report_builder/api/views.py index ed394e25..716cd488 100644 --- a/report_builder/api/views.py +++ b/report_builder/api/views.py @@ -39,7 +39,7 @@ class ContentTypeViewSet(viewsets.ReadOnlyModelViewSet): """ Read only view of content types. Used to populate choices for new report root model. """ - queryset = ContentType.objects.all() + queryset = Report.allowed_models() serializer_class = ContentTypeSerializer permission_classes = (IsAdminUser,)