From c68b2bb090800e8ff2ea7c5048b3aea616e3622f Mon Sep 17 00:00:00 2001 From: lin-hua-cheng Date: Thu, 12 Nov 2015 11:38:41 -0800 Subject: [PATCH] Fix config ordering for identity plugin file The comment for DASHBOARD and GROUP config got switched. Change-Id: Ia5f2db2f2d91a7109b6b665ef272e5bd6c9962ca --- openstack_dashboard/enabled/_3010_identity_domains_panel.py | 4 ++-- openstack_dashboard/enabled/_3020_identity_projects_panel.py | 4 ++-- openstack_dashboard/enabled/_3030_identity_users_panel.py | 4 ++-- openstack_dashboard/enabled/_3040_identity_groups_panel.py | 4 ++-- openstack_dashboard/enabled/_3050_identity_roles_panel.py | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/openstack_dashboard/enabled/_3010_identity_domains_panel.py b/openstack_dashboard/enabled/_3010_identity_domains_panel.py index c225600732..e8aff7cafd 100644 --- a/openstack_dashboard/enabled/_3010_identity_domains_panel.py +++ b/openstack_dashboard/enabled/_3010_identity_domains_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'domains' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.domains.panel.Domains' diff --git a/openstack_dashboard/enabled/_3020_identity_projects_panel.py b/openstack_dashboard/enabled/_3020_identity_projects_panel.py index bef72a85f6..cd843bc575 100644 --- a/openstack_dashboard/enabled/_3020_identity_projects_panel.py +++ b/openstack_dashboard/enabled/_3020_identity_projects_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'projects' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.projects.panel.Tenants' diff --git a/openstack_dashboard/enabled/_3030_identity_users_panel.py b/openstack_dashboard/enabled/_3030_identity_users_panel.py index 785afe3f39..52b45330db 100644 --- a/openstack_dashboard/enabled/_3030_identity_users_panel.py +++ b/openstack_dashboard/enabled/_3030_identity_users_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'users' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.users.panel.Users' diff --git a/openstack_dashboard/enabled/_3040_identity_groups_panel.py b/openstack_dashboard/enabled/_3040_identity_groups_panel.py index b584ac4e24..cd27e87fbd 100644 --- a/openstack_dashboard/enabled/_3040_identity_groups_panel.py +++ b/openstack_dashboard/enabled/_3040_identity_groups_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'groups' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.groups.panel.Groups' diff --git a/openstack_dashboard/enabled/_3050_identity_roles_panel.py b/openstack_dashboard/enabled/_3050_identity_roles_panel.py index 7a055ce72b..c029d16a01 100644 --- a/openstack_dashboard/enabled/_3050_identity_roles_panel.py +++ b/openstack_dashboard/enabled/_3050_identity_roles_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'roles' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.roles.panel.Roles'