mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-22 14:04:44 +00:00
6 lines
173 B
Python
6 lines
173 B
Python
from django.dispatch import Signal
|
|
|
|
notify = Signal(providing_args=[
|
|
'recipient', 'actor', 'verb', 'action_object', 'target', 'description',
|
|
'timestamp', 'level'
|
|
])
|