2014-11-13 22:23:16 +01:00
|
|
|
from django.apps import AppConfig
|
2015-01-16 14:18:34 +01:00
|
|
|
from django.db.models.signals import post_migrate
|
2014-11-13 22:23:16 +01:00
|
|
|
|
|
|
|
|
2015-07-01 17:48:41 +02:00
|
|
|
class MotionsAppConfig(AppConfig):
|
2015-03-26 05:36:10 +01:00
|
|
|
name = 'openslides.motions'
|
2014-11-13 22:23:16 +01:00
|
|
|
verbose_name = 'OpenSlides Motion'
|
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
|
|
|
|
|
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-24 16:35:50 +01:00
|
|
|
from openslides.utils.rest_api import router
|
2016-06-02 12:47:01 +02:00
|
|
|
from .config_variables import get_config_variables
|
|
|
|
from .signals import create_builtin_workflows
|
2016-10-01 20:42:44 +02:00
|
|
|
from .views import CategoryViewSet, MotionViewSet, MotionBlockViewSet, MotionPollViewSet, MotionChangeRecommendationViewSet, WorkflowViewSet
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2016-06-08 22:18:35 +02:00
|
|
|
# Define config variables
|
|
|
|
config.update_config_variables(get_config_variables())
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
# Connect signals.
|
2015-01-16 14:18:34 +01:00
|
|
|
post_migrate.connect(create_builtin_workflows, dispatch_uid='motion_create_builtin_workflows')
|
2014-11-13 22:23:16 +01:00
|
|
|
|
2015-01-24 16:35:50 +01:00
|
|
|
# Register viewsets.
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Category').get_collection_string(), CategoryViewSet)
|
|
|
|
router.register(self.get_model('Motion').get_collection_string(), MotionViewSet)
|
2016-10-01 20:42:44 +02:00
|
|
|
router.register(self.get_model('MotionBlock').get_collection_string(), MotionBlockViewSet)
|
2016-02-11 22:58:32 +01:00
|
|
|
router.register(self.get_model('Workflow').get_collection_string(), WorkflowViewSet)
|
2016-09-10 18:49:38 +02:00
|
|
|
router.register(self.get_model('MotionChangeRecommendation').get_collection_string(),
|
|
|
|
MotionChangeRecommendationViewSet)
|
2015-07-22 15:23:57 +02:00
|
|
|
router.register('motions/motionpoll', MotionPollViewSet)
|
2017-01-14 12:29:42 +01:00
|
|
|
|
|
|
|
def get_startup_elements(self):
|
|
|
|
from ..utils.collection import Collection
|
|
|
|
for model in ('Category', 'Motion', 'MotionBlock', 'Workflow', 'MotionChangeRecommendation'):
|
|
|
|
yield Collection(self.get_model(model).get_collection_string())
|