f169ee58ab
This is an extension to the plugin-based dashboard configuration. It adds support processing panel configuration configuration file in the openstack_dashboard/enabled/ directory. Panels can be added, removed to/from the panel group of a dashboard. It also provide the ability to update the default panel of the dashboard. Change-Id: I2d7adfb8045c244ec063a6741e3b9fe21c188525 Implements: blueprint plugin-panel-config
11 lines
397 B
Plaintext
11 lines
397 B
Plaintext
# The name of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'plugin_panel'
|
|
# The name of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'admin'
|
|
# The name of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'admin'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = \
|
|
'openstack_dashboard.test.test_panels.plugin_panel.panel.PluginPanel'
|