Add webhook handler

This commit is contained in:
José Padilla
2013-04-11 14:57:53 -04:00
parent 717e048365
commit c60a7c666f
3 changed files with 66 additions and 17 deletions

5
djrill/signals.py Normal file
View File

@@ -0,0 +1,5 @@
from django.dispatch import Signal
webhook_verify = Signal()
webhook_event = Signal(providing_args=['event_type', 'data'])