18 lines
592 B
Python
18 lines
592 B
Python
# The name of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'notifications'
|
|
# The name of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'overcloud'
|
|
# The name of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'monitoring'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = \
|
|
'monitoring.notifications.panel.Notifications'
|
|
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
#ADD_INSTALLED_APPS = ['monitoring']
|
|
|
|
# A list of angular modules to be added as dependencies to horizon app.
|
|
#ADD_ANGULAR_MODULE = ['monitoringApp']
|
|
|