bundesdata_web_app/app/speakers/apps.py

11 lines
250 B
Python
Raw Normal View History

2019-02-28 13:09:53 +00:00
from django.apps import AppConfig
from watson import search as watson
class SpeakersConfig(AppConfig):
name = 'speakers'
def ready(self):
Speaker = self.get_model("Speaker")
watson.register(Speaker, exclude=["short_vita"])