django-notifications/notifications/models/notification.py
2023-07-07 00:54:47 +00:00

9 lines
281 B
Python

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")