mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 02:03:22 +00:00
18 lines
442 B
Python
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"
|