notification: add notification history

This commit is contained in:
behruz-dev
2025-10-30 16:17:25 +05:00
parent 22b1d37a1a
commit af8d212b3e
10 changed files with 146 additions and 5 deletions

View File

@@ -1 +1,2 @@
from .notification import *
from .notification import *
from .notification_history import *

View File

@@ -0,0 +1,6 @@
from django.contrib import admin
from core.apps.notifications.models.notification_history import NotificationHistory
admin.site.register(NotificationHistory)