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