app/django/core/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 23 Nov 2008 00:38:35 +0000
changeset 575 ba4a7e90139d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fix Host invites This fixes the UI for Host invites by hiding the fields that are not used, and by auto-filling in the user and scope fields based on link_id and scope_path.

from django.dispatch import Signal

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