django-notifications/notifications/models/notification.py

10 lines
281 B
Python
Raw Normal View History

2023-07-07 00:54:47 +00:00
from swapper import swappable_setting
from notifications.models.base import AbstractNotification
class Notification(AbstractNotification):
class Meta(AbstractNotification.Meta):
abstract = False
swappable = swappable_setting("notifications", "Notification")