2014-11-13 22:23:16 +01:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
2015-07-01 17:48:41 +02:00
|
|
|
class AssignmentsAppConfig(AppConfig):
|
2015-03-26 05:36:10 +01:00
|
|
|
name = 'openslides.assignments'
|
|
|
|
verbose_name = 'OpenSlides Assignments'
|
2015-07-01 17:48:41 +02:00
|
|
|
angular_site_module = True
|
|
|
|
angular_projector_module = True
|
2014-11-13 22:23:16 +01:00
|
|
|
|
|
|
|
def ready(self):
|
2015-06-24 22:11:54 +02:00
|
|
|
# Load projector elements.
|
|
|
|
# Do this by just importing all from these files.
|
|
|
|
from . import projector # noqa
|
2016-03-02 00:46:19 +01:00
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
# Import all required stuff.
|
2016-06-02 12:47:01 +02:00
|
|
|
from openslides.core.config import config
|
2015-01-17 14:25:05 +01:00
|
|
|
from openslides.utils.rest_api import router
|
2016-06-02 12:47:01 +02:00
|
|
|
from .config_variables import get_config_variables
|
2015-06-14 23:26:06 +02:00
|
|
|
from .views import AssignmentViewSet, AssignmentPollViewSet
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2016-06-02 12:47:01 +02:00
|
|
|
# Define config variables
|
2016-06-08 22:18:35 +02:00
|
|
|
config.update_config_variables(get_config_variables())
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2015-01-17 14:25:05 +01:00
|
|
|
# Register viewsets.
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Assignment').get_collection_string(), AssignmentViewSet)
|
2015-11-28 00:27:14 +01:00
|
|
|
router.register('assignments/poll', AssignmentPollViewSet)
|
2017-01-14 12:29:42 +01:00
|
|
|
|
|
|
|
def get_startup_elements(self):
|
|
|
|
from ..utils.collection import Collection
|
|
|
|
return [Collection(self.get_model('Assignment').get_collection_string())]
|