##// END OF EJS Templates
Image deduplication (BB-53). When an image with the same hash is uploaded, it...
Image deduplication (BB-53). When an image with the same hash is uploaded, it won't be saved. Instead, post will be linked to the same PostImage object

File last commit:

r914:000a8767 default
r944:6ed17cb6 default
Show More
search_indexes.py
24 lines | 601 B | text/x-python | PythonLexer
from haystack import indexes
from boards.models import Post, Tag
__author__ = 'neko259'
class PostIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
def get_model(self):
return Post
def index_queryset(self, using=None):
return self.get_model().objects.all()
class TagIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
def get_model(self):
return Tag
def index_queryset(self, using=None):
return self.get_model().objects.all()