X-Git-Url: https://git.mdrn.pl/django-migdal.git/blobdiff_plain/09302fe33077912dd97408fc05ea89abefd14b85..13f3329504332cdb807d3ba925a1f31f2856404d:/migdal/search_indexes.py diff --git a/migdal/search_indexes.py b/migdal/search_indexes.py index d5b57c0..fc35cff 100644 --- a/migdal/search_indexes.py +++ b/migdal/search_indexes.py @@ -19,10 +19,6 @@ class EntryIndex(indexes.SearchIndex, indexes.Indexable): def get_model(self): return Entry - def index_queryset(self, using=None): - """Used when the entire index for model is updated.""" - return self.get_model().objects.all() - add_translatable_index(EntryIndex, { 'title': indexes.CharField(null=True),