2014-11-13 22:23:16 +01:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
class UsersAppConfig(AppConfig):
|
|
|
|
name = 'openslides.users'
|
|
|
|
verbose_name = 'OpenSlides Users'
|
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-16 10:37:23 +02:00
|
|
|
# Load projector elements.
|
2015-09-16 00:55:27 +02:00
|
|
|
# Just import this file.
|
2015-06-16 10:37:23 +02:00
|
|
|
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 ..core.config import config
|
|
|
|
from ..core.signals import post_permission_creation
|
2015-09-16 00:55:27 +02:00
|
|
|
from ..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_groups_and_admin
|
2015-02-04 00:08:38 +01:00
|
|
|
from .views import GroupViewSet, UserViewSet
|
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())
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2014-11-13 22:23:16 +01:00
|
|
|
# Connect signals.
|
2015-02-12 20:57:05 +01:00
|
|
|
post_permission_creation.connect(
|
|
|
|
create_builtin_groups_and_admin,
|
|
|
|
dispatch_uid='create_builtin_groups_and_admin')
|
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('User').get_collection_string(), UserViewSet)
|
2017-01-14 13:02:26 +01:00
|
|
|
router.register(self.get_model('Group').get_collection_string(), GroupViewSet)
|
|
|
|
|
|
|
|
def get_startup_elements(self):
|
|
|
|
from ..utils.collection import Collection
|
|
|
|
for model in ('User', 'Group'):
|
|
|
|
yield Collection(self.get_model(model).get_collection_string())
|