mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-13 01:40:59 +00:00
8 lines
270 B
Python
8 lines
270 B
Python
''' Django notifications signal file '''
|
|
# -*- coding: utf-8 -*-
|
|
from django.dispatch import Signal
|
|
|
|
notify = Signal(providing_args=[ # pylint: disable=invalid-name
|
|
'recipient', 'actor', 'verb', 'action_object', 'target', 'description',
|
|
'timestamp', 'level'
|
|
])
|