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
|
2015-11-23 21:31:15 +01:00
|
|
|
js_files = ['js/motions/base.js', 'js/motions/site.js', 'js/motions/projector.js']
|
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
|
2015-07-22 15:23:57 +02:00
|
|
|
from .views import CategoryViewSet, MotionViewSet, MotionPollViewSet, 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)
|
|
|
|
router.register(self.get_model('Workflow').get_collection_string(), WorkflowViewSet)
|
2015-07-22 15:23:57 +02:00
|
|
|
router.register('motions/motionpoll', MotionPollViewSet)
|