ministryofjustice/moj-product-dashboard

View on GitHub
dashboard/apps/dashboard/apps.py

Summary

Maintainability
A
0 mins
Test Coverage
from django.apps import AppConfig


class DashboardConfig(AppConfig):
    # this dotted name is necessary because
    # the app name dashboard is the same as
    # the top directory, which causes import
    # issues if not used.
    name = 'dashboard.apps.dashboard'

    def ready(self):
        from . import signals