try to fix issue w/ news tag binding
This commit is contained in:
parent
6a3a40be4f
commit
d12ad93fe1
|
|
@ -2,6 +2,7 @@
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django_elasticsearch_dsl import Document, Index, fields
|
from django_elasticsearch_dsl import Document, Index, fields
|
||||||
from tag import models
|
from tag import models
|
||||||
|
from news.models import News
|
||||||
|
|
||||||
TagCategoryIndex = Index(settings.ELASTICSEARCH_INDEX_NAMES.get(__name__, 'tag_category'))
|
TagCategoryIndex = Index(settings.ELASTICSEARCH_INDEX_NAMES.get(__name__, 'tag_category'))
|
||||||
TagCategoryIndex.settings(number_of_shards=2, number_of_replicas=2)
|
TagCategoryIndex.settings(number_of_shards=2, number_of_replicas=2)
|
||||||
|
|
@ -26,7 +27,7 @@ class TagCategoryDocument(Document):
|
||||||
'public',
|
'public',
|
||||||
'value_type'
|
'value_type'
|
||||||
)
|
)
|
||||||
related_models = [models.Tag]
|
related_models = [models.Tag, News]
|
||||||
|
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user