summaryrefslogtreecommitdiffstats
path: root/forum_modules/sphinxfulltext/models.py
blob: a188728d8a8ea4342ecbb432a11040641108294a (plain)
1
2
3
4
5
6
7
8
9
10
11
from forum.models import Question
from django.conf import settings
from djangosphinx.manager import SphinxSearch

from djangosphinx.models import SphinxSearch

Question.add_to_class('search', SphinxSearch(
                                   index=' '.join(settings.SPHINX_SEARCH_INDICES),
                                   mode='SPH_MATCH_ALL',
                                )
                      )