
Unit-testing would be easier this way. Also clean up some remaining bits of previous version of Mistral Workbook builder. Implements blueprint: merlin-unittests Change-Id: Ie82a5fd19fcd5e98d7c9d2321a9a8c93495af07f
17 lines
603 B
Python
17 lines
603 B
Python
# The name of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'mistral'
|
|
# The name of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'project'
|
|
# The name of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'orchestration'
|
|
|
|
ADD_INSTALLED_APPS = ['merlin', 'mistral']
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = 'mistral.panel.MistralPanel'
|
|
|
|
ADD_ANGULAR_MODULES = ['angular.filter', 'merlin', 'mistral']
|
|
ADD_JS_FILES = ['merlin/js/lib/angular-filter.js',
|
|
'merlin/js/merlin.init.js',
|
|
'mistral/js/mistral.init.js']
|