OpenSlides/openslides/topics/apps.py
Norman Jäckel cab53f0434 Moved custom slides to own app topics for better app structure.
Renamed model to Topic. Added migrations file. Fixed #2402.
2016-09-21 15:00:23 +02:00

21 lines
601 B
Python

from django.apps import AppConfig
class TopicsAppConfig(AppConfig):
name = 'openslides.topics'
verbose_name = 'OpenSlides Topics'
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 ..utils.rest_api import router
from .views import TopicViewSet
# Register viewsets.
router.register(self.get_model('Topic').get_collection_string(), TopicViewSet)