OpenSlides/openslides/topics/apps.py

37 lines
1.1 KiB
Python
Raw Normal View History

from django.apps import AppConfig
from ..utils.collection import Collection
class TopicsAppConfig(AppConfig):
name = 'openslides.topics'
verbose_name = 'OpenSlides Topics'
angular_site_module = True
angular_projector_module = True
def ready(self):
# Load projector elements.
# Do this by just importing all from these files.
from . import projector # noqa
# Import all required stuff.
from openslides.core.signals import permission_change
from ..utils.rest_api import router
from .signals import get_permission_change_data
from .views import TopicViewSet
# Connect signals.
permission_change.connect(
get_permission_change_data,
dispatch_uid='topics_get_permission_change_data')
# Register viewsets.
router.register(self.get_model('Topic').get_collection_string(), TopicViewSet)
2017-01-14 12:29:42 +01:00
def get_startup_elements(self):
"""
Yields all collections required on startup i. e. opening the websocket
connection.
"""
yield Collection(self.get_model('Topic').get_collection_string())