Coverage for website/pushnotifications/apps.py: 100.00%
7 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django.apps import AppConfig
2from django.utils.translation import gettext_lazy as _
5class PushNotificationsConfig(AppConfig):
6 """AppConfig for the pushnotifications package."""
8 name = "pushnotifications"
9 verbose_name = _("Push Notifications")
11 def ready(self):
12 """Import the signals when the app is ready."""
13 from . import signals # noqa: F401