68836f4b35
Make the installation instructions use the pluggable dashboard configuration. No more creating symlinks. Change-Id: I2a93bbfde1b014cb5217be65164fbab9a17fefd9
12 lines
268 B
Plaintext
12 lines
268 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,
|
|
}
|