2012-04-14 12:52:56 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.config.signals
|
2012-04-25 22:29:19 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-04-14 12:52:56 +02:00
|
|
|
|
|
|
|
Defines Signals for the config.
|
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
:copyright: 2011, 2012 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
|
|
|
|
|
|
|
|
default_config_value = Signal(providing_args=['key'])
|