summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRadomir Dopieralski <openstack@sheep.art.pl>2014-07-17 17:19:52 +0200
committerRadomir Dopieralski <openstack@sheep.art.pl>2015-02-17 08:46:56 +0100
commitce3fea4921be6af50221c974971da9cadab6fa26 (patch)
tree1eb62f847238a8f5a40b6454a188d6da6dcb4b8e /doc
parent43e0c2b9986db54fd0823d85adad81c94a3b59b8 (diff)
downloadhorizon-ce3fea4921be6af50221c974971da9cadab6fa26.tar.gz
Allow adding to INSTALLED_APPS from local_settings.py
Defines a new option, ADD_INSTALLED_APPS, which gets prepended to the beginning of INSTALLED_APPS. Change-Id: I956835c3e18edee9e223a607005b47a5c5977687 Closes-bug: #1343342
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/source/topics/settings.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/source/topics/settings.rst b/doc/source/topics/settings.rst
index 5f76dc7c2..377a728ad 100755
--- a/doc/source/topics/settings.rst
+++ b/doc/source/topics/settings.rst
@@ -977,6 +977,15 @@ are generally safe to use.
When CSRF_COOKIE_SECURE or SESSION_COOKIE_SECURE are set to True, these attributes
help protect the session cookies from cross-site scripting.
+``ADD_INSTALLED_APPS``
+----------------------
+
+.. versionadded:: 2015.1(Kilo)
+
+A list of Django applications to be prepended to the ``INSTALLED_APPS``
+setting. Allows extending the list of installed applications without having
+to override it completely.
+
.. _pluggable-settings-label: