Source code for pushnotifications.apps
"""Configuration for the pushnotifications package"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
[docs]class PushNotificationsConfig(AppConfig):
"""AppConfig for the pushnotifications package"""
name = "pushnotifications"
verbose_name = _("Push Notifications")