5 lines
125 B
Python
5 lines
125 B
Python
from django.contrib import admin
|
|
|
|
from core.apps.notifications.models import Notification
|
|
|
|
admin.site.register(Notification) |