mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-19 20:51:00 +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'
|
|
])
|