From 272199146aa67e8b64711edcdd0a891e37488ca0 Mon Sep 17 00:00:00 2001 From: jpic <jamespic@gmail.com> Date: Wed, 27 Jan 2016 01:44:52 +0100 Subject: [PATCH] Performance --- representatives_votes/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/representatives_votes/api.py b/representatives_votes/api.py index 193c65c..c277322 100644 --- a/representatives_votes/api.py +++ b/representatives_votes/api.py @@ -61,7 +61,7 @@ class ProposalViewSet(viewsets.ReadOnlyModelViewSet): API endpoint that allows proposals to be viewed. """ - queryset = Proposal.objects.all() + queryset = Proposal.objects.select_related('dossier') serializer_class = ProposalSerializer filter_backends = ( @@ -103,7 +103,7 @@ class VoteViewSet(viewsets.ReadOnlyModelViewSet): API endpoint that allows proposals to be viewed. """ - queryset = Vote.objects.all() + queryset = Vote.objects.select_related('representative', 'proposal') serializer_class = VoteSerializer filter_backends = ( -- GitLab