2012-04-14 12:52:56 +02:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
openslides.config.signals
|
2012-07-07 14:48:21 +02:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-04-14 12:52:56 +02:00
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
Signals for the config app.
|
2012-04-14 12:52:56 +02:00
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
:copyright: 2011–2013 by OpenSlides team, see AUTHORS.
|
2012-04-14 12:52:56 +02:00
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from django.dispatch import Signal
|
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
|
config_signal = Signal(providing_args=[])
|
|
|
|
|
"""Signal to get all config tabs from all apps."""
|