From 87b64cd6b18c65aa24831b80534a75e61c78dad4 Mon Sep 17 00:00:00 2001 From: keedya Date: Mon, 7 Dec 2015 16:59:53 -0500 Subject: [PATCH] register RackHD panel in admin dashboard --- Horizon/_50_admin_rackhd_panels.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 Horizon/_50_admin_rackhd_panels.py diff --git a/Horizon/_50_admin_rackhd_panels.py b/Horizon/_50_admin_rackhd_panels.py new file mode 100755 index 0000000..39dc754 --- /dev/null +++ b/Horizon/_50_admin_rackhd_panels.py @@ -0,0 +1,11 @@ +# The slug of the panel to be added to HORIZON_CONFIG. Required. +PANEL = 'rackhd' +# The slug of the dashboard the PANEL associated with. Required. +PANEL_DASHBOARD = 'admin' + +# The slug 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.dashboards.admin.' + 'rackhd.panel.Rackhd') \ No newline at end of file