14 lines
337 B
Python
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'
|