8e949857fd
The term name is used incorrectly and is misleading in the pluggable extensions settings documentation and the enabled files. The value that needs to be specified is the slug not the name. This correction will aid in developers and deployers using the correct value. Closes-Bug: #1408873 Change-Id: I96c5158bdaddeff7e9087cd9603344f2021a9570
9 lines
401 B
Python
9 lines
401 B
Python
# The slug of the dashboard to be added to HORIZON['dashboards']. Required.
|
|
DASHBOARD = 'identity'
|
|
# If set to True, this dashboard will be set as the default dashboard.
|
|
DEFAULT = False
|
|
# A dictionary of exception classes to be added to HORIZON['exceptions'].
|
|
ADD_EXCEPTIONS = {}
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = ['openstack_dashboard.dashboards.identity']
|