django-notifications/notifications/tests/sample_notifications/admin.py

11 lines
272 B
Python
Raw Normal View History

2020-04-08 21:40:02 +00:00
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