Source code for comments.search_indexes

__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"


# import datetime

from haystack import indexes

from .models import Comment


[docs]class CommentIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField( document=True, model_attr="comment_text", use_template=True ) authors = indexes.CharField(model_attr="author") date = indexes.DateTimeField(model_attr="date_submitted")
[docs] def get_updated_field(self): return "latest_activity"
[docs] def get_model(self): return Comment
[docs] def index_queryset(self, using=None): """Used when the entire index for model is updated.""" return self.get_model().objects.vetted()