Mercurial > public > sg101
annotate news/search_indexes.py @ 1075:5bba39fafad8
Added mgmt command to fix news story video embeds.
These embeds stopped working when we went to https.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Apr 2016 00:31:06 -0500 |
parents | cf9918328c64 |
children |
rev | line source |
---|---|
bgneal@219 | 1 """Haystack search index for the news application.""" |
bgneal@753 | 2 from haystack import indexes |
bgneal@392 | 3 |
bgneal@943 | 4 from custom_search.fields import MaxTermSizeCharField |
bgneal@219 | 5 from news.models import Story |
bgneal@219 | 6 |
bgneal@219 | 7 |
bgneal@753 | 8 class StoryIndex(indexes.SearchIndex, indexes.Indexable): |
bgneal@943 | 9 text = MaxTermSizeCharField(document=True, use_template=True) |
bgneal@753 | 10 author = indexes.CharField(model_attr='submitter') |
bgneal@753 | 11 pub_date = indexes.DateTimeField(model_attr='date_submitted') |
bgneal@753 | 12 |
bgneal@753 | 13 def get_model(self): |
bgneal@753 | 14 return Story |
bgneal@219 | 15 |
bgneal@277 | 16 def get_updated_field(self): |
bgneal@277 | 17 return 'update_date' |