mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-09 16:20:59 +00:00
9 lines
281 B
Python
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")
|