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