Skip to content
Snippets Groups Projects
apps.py 262 B
Newer Older
from django.apps import AppConfig


class PortalConfig(AppConfig):
    name = 'portal'

    def ready(self):
        from .listeners import (
            create_external_user_profile, create_user_profile,
            create_lab_group, delete_lab_group
        )