fix
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 31 Mar 2014 14:59:58 +0000 (16:59 +0200)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 31 Mar 2014 14:59:58 +0000 (16:59 +0200)
events/search_indexes.py
questions/search_indexes.py

index 2445da6..6b30345 100644 (file)
@@ -13,10 +13,6 @@ class EventIndex(indexes.SearchIndex, indexes.Indexable):
     def get_model(self):
         return Event
 
-    def index_queryset(self):
-        """Used when the entire index for model is updated."""
-        return self.get_model().objects.all()
-
 
 add_translatable_index(EventIndex, {
     'organizer': indexes.CharField(null=True),
index ae126f0..e2e05f8 100755 (executable)
@@ -14,6 +14,6 @@ class QuestionIndex(indexes.SearchIndex, indexes.Indexable):
     def get_model(self):
         return Question
 
-    def index_queryset(self):
+    def index_queryset(self, using=None):
         """Used when the entire index for model is updated."""
         return self.get_model().objects.filter(published=True)