mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-19 21:05:13 +00:00
8 lines
260 B
Python
8 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'])
|