add notification for expence create api

This commit is contained in:
behruz-dev
2025-10-28 16:53:01 +05:00
parent a542613841
commit fe543fad5a
4 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1 @@
from .notification import *

View File

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

View File

@@ -4,3 +4,6 @@ from django.apps import AppConfig
class NotificationsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core.apps.notifications'
def ready(self):
import core.apps.notifications.admin