mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-02-05 12:15:26 -05:00
feat: Implement a new notifications application, add admin API views for dashboard metrics, introduce scheduled tasks, and update API routing and project configurations.
This commit is contained in:
18
backend/apps/notifications/apps.py
Normal file
18
backend/apps/notifications/apps.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user