app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 02 Feb 2009 15:00:43 +0000
changeset 1180 6290c9e49848
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fixed club_app The user could not edit their own club app due to a buggy check. Patch by: Sverre Rabbelier

from django.dispatch import Signal

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