django-notifications/notifications/tests/sample_notifications/admin.py
2020-05-07 10:49:47 -05:00

10 lines
272 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