mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-20 07:10:23 +00:00
10 lines
293 B
Python
10 lines
293 B
Python
from swapper import swappable_setting
|
|
|
|
from .base.models import AbstractNotification, notify_handler # noqa
|
|
|
|
|
|
class Notification(AbstractNotification):
|
|
|
|
class Meta(AbstractNotification.Meta):
|
|
abstract = False
|
|
swappable = swappable_setting('notifications', 'Notification')
|