Sith/core/search_indexes.py
2016-12-20 15:19:11 +01:00

18 lines
442 B
Python

from haystack import indexes
from core.models import User
class UserIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
def get_model(self):
return User
def index_queryset(self, using=None):
"""Used when the entire index for model is updated."""
return self.get_model().objects.all()
def get_updated_field(self):
return "last_update"