mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
7 lines
260 B
Python
7 lines
260 B
Python
# Adapted from djpubsubhubbub. See License: http://git.participatoryculture.org/djpubsubhubbub/tree/LICENSE
|
|
|
|
from django.dispatch import Signal
|
|
|
|
pre_subscribe = Signal(providing_args=["created"])
|
|
verified = Signal()
|
|
updated = Signal(providing_args=["update"])
|