from django.apps import AppConfig


class HRCoreConfig(AppConfig):
    default_auto_field = "django.db.models.BigAutoField"
    name = "simorgh.apps.hr_core"
    label = "hr_core"
    verbose_name = "HR Core"

    def ready(self) -> None:
        from simorgh.apps.hr_core.permissions import register_all as _register_permissions
        _register_permissions()
        from simorgh.apps.hr_core.events import register_all as _register_events
        _register_events()
        from simorgh.apps.hr_core import settings as _  # noqa: F401
        from simorgh.apps.hr_core import search as _  # noqa: F401
        from simorgh.apps.hr_core import notifications as _  # noqa: F401
