django-notifications/notifications/tests/sample_notifications/admin.py
2023-06-24 00:10:23 +00:00

11 lines
273 B
Python

import swapper
from django.contrib import admin
from notifications.base.admin import AbstractNotificationAdmin
Notification = swapper.load_model("notifications", "Notification")
@admin.register(Notification)
class NotificationAdmin(AbstractNotificationAdmin):
pass