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