mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-04 03:24:52 +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'
|
|
])
|