add notification and send notification

This commit is contained in:
behruz-dev
2025-10-28 16:03:54 +05:00
parent fd6b9ab0c2
commit 544b04a21e
14 changed files with 123 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ APPS = [
'core.apps.orders',
'core.apps.finance',
'core.apps.counterparty',
'core.apps.notifications',
]
PACKAGES = [

View File

@@ -35,6 +35,7 @@ urlpatterns = [
path('orders/', include('core.apps.orders.urls')),
path('finance/', include('core.apps.finance.urls')),
path('counterparties/', include('core.apps.counterparty.urls')),
path('notifications/', include('core.apps.notifications.urls')),
]
)),