Files
igny8/backend/igny8_core/business/notifications/apps.py
2025-12-27 22:32:29 +00:00

14 lines
337 B
Python

"""
Notifications App Configuration
"""
from django.apps import AppConfig
class NotificationsConfig(AppConfig):
"""Configuration for the notifications app."""
default_auto_field = 'django.db.models.BigAutoField'
name = 'igny8_core.business.notifications'
label = 'notifications'
verbose_name = 'Notifications'