mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-02-05 13:35:19 -05:00
19 lines
456 B
Python
19 lines
456 B
Python
"""
|
|
Notifications app configuration.
|
|
|
|
This app provides Django-native notification functionality for ThrillWiki,
|
|
including in-app notifications, email notifications, and user preferences.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
"""Configuration for the ThrillWiki notifications app."""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.notifications"
|
|
verbose_name = "Notifications"
|
|
|
|
|