version 0.0.22 updated CollectionList get_queryset method
This commit is contained in:
parent
507bae7b0d
commit
b72f9956cf
|
|
@ -34,7 +34,7 @@ class CollectionListView(CollectionViewMixin, generics.ListAPIView):
|
||||||
"""Override get_queryset method"""
|
"""Override get_queryset method"""
|
||||||
country_id = self.request.query_params.get('country_id')
|
country_id = self.request.query_params.get('country_id')
|
||||||
return models.Collection.objects.published()\
|
return models.Collection.objects.published()\
|
||||||
.filter(country=country_id)
|
.by_country(country=country_id)
|
||||||
|
|
||||||
|
|
||||||
class CollectionRetrieveView(CollectionViewMixin, generics.RetrieveAPIView):
|
class CollectionRetrieveView(CollectionViewMixin, generics.RetrieveAPIView):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user