d4a00c7482
Added documentation on how to disable the other dashboards. Change-Id: Ie9e5853fdfdc14cdc3da260e2ae1ba57c20eb998 Closes-bug: #1302006
13 lines
283 B
Plaintext
13 lines
283 B
Plaintext
from tuskar_ui import exceptions
|
|
|
|
DASHBOARD = 'infrastructure'
|
|
ADD_INSTALLED_APPS = [
|
|
'tuskar_ui.infrastructure',
|
|
]
|
|
ADD_EXCEPTIONS = {
|
|
'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED,
|
|
}
|
|
DEFAULT = True
|