
Before this commit murano used 'murano' as the name of it's dashboard. This is too specific and contradicts with general practice of naming dashboards after the names of the service. This also prevents us from re-using the same dashboard in murano-dashboard and app-catalog-ui Targets bp: catalog-dashboard-reorg Change-Id: I3df3865f6bf82626325e66120c408552260c7e2b
25 lines
618 B
Python
25 lines
618 B
Python
from muranodashboard import exceptions
|
|
|
|
# The name of the dashboard to be added to HORIZON['dashboards']. Required.
|
|
DASHBOARD = 'app-catalog'
|
|
|
|
# If set to True, this dashboard will not be added to the settings.
|
|
DISABLED = False
|
|
|
|
ADD_INSTALLED_APPS = [
|
|
'muranodashboard',
|
|
]
|
|
|
|
ADD_EXCEPTIONS = {
|
|
'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED,
|
|
}
|
|
|
|
ADD_JS_FILES = [
|
|
'muranodashboard/js/upload_form.js',
|
|
'muranodashboard/js/import_bundle_form.js',
|
|
'muranodashboard/js/murano.service.js',
|
|
'muranodashboard/js/more-less.js',
|
|
]
|