Source code for dash.contrib.plugins.url.conf

__all__ = ('get_setting',)

from django.conf import settings

from dash.contrib.plugins.url import defaults

[docs]def get_setting(setting, override=None): """ Get a setting from ``dash.contrib.plugins.url`` conf module, falling back to the default. If override is not None, it will be used instead of the setting. :param setting: String with setting name :param override: Value to use when no setting is available. Defaults to None. :return: Setting value. """ if override is not None: return override if hasattr(settings, 'DASH_PLUGIN_URL_{0}'.format(setting)): return getattr(settings, 'DASH_PLUGIN_URL_{0}'.format(setting)) else: return getattr(defaults, setting)
Read the Docs v: 0.2.4
Versions
latest
0.3.2
0.3
0.2.4
0.1.4
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.