app/django/core/signals.py
author Lennard de Rijk <ljvderijk@gmail.com>
Thu, 26 Feb 2009 08:47:21 +0000
changeset 1504 f9d0bf275917
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add the ability to put GroupApplications into the pre-rejected state. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

from django.dispatch import Signal

request_started = Signal()
request_finished = Signal()
got_request_exception = Signal(providing_args=["request"])