from django.apps import AppConfig class AssignmentsAppConfig(AppConfig): name = 'openslides.assignments' verbose_name = 'OpenSlides Assignments' 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.config import config from openslides.utils.rest_api import router from .config_variables import get_config_variables from .views import AssignmentViewSet, AssignmentPollViewSet # Define config variables config.update_config_variables(get_config_variables()) # Register viewsets. router.register(self.get_model('Assignment').get_collection_string(), AssignmentViewSet) router.register('assignments/poll', AssignmentPollViewSet) def get_startup_elements(self): from ..utils.collection import Collection return [Collection(self.get_model('Assignment').get_collection_string())]