9f12763f8b
Server: - ListOfSpeakers (LOS) is now a speprate model, containing of an id, speakers, closed and a content_object. - Moved all speaker related views from ItemViewSet to the new ListOfSpeakersViewSet. - Make Mixins for content objects of items and lists of speakers. - Migrations: Move the lists of speakers from items to the LOS model. Client: - Removed the speaker repo and moved functionality to the new ListOfSpeakersRepositoryService. - Splitted base classes for agenda item content objects to items and LOS. - CurrentAgendaItemService -> CurrentListOfSpeakersSerivce - Cleaned up the list of speakers component.
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TopicsAppConfig(AppConfig):
|
|
name = "openslides.topics"
|
|
verbose_name = "OpenSlides Topics"
|
|
|
|
def ready(self):
|
|
# Import all required stuff.
|
|
from openslides.core.signals import permission_change
|
|
from ..utils.rest_api import router
|
|
from .projector import register_projector_slides
|
|
from .signals import get_permission_change_data
|
|
from .views import TopicViewSet
|
|
from . import serializers # noqa
|
|
|
|
# Define projector elements.
|
|
register_projector_slides()
|
|
|
|
# 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)
|
|
|
|
def get_startup_elements(self):
|
|
"""
|
|
Yields all Cachables required on startup i. e. opening the websocket
|
|
connection.
|
|
"""
|
|
yield self.get_model("Topic")
|