summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/aggregates/panel.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/admin/aggregates/panel.py')
-rw-r--r--openstack_dashboard/dashboards/admin/aggregates/panel.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/openstack_dashboard/dashboards/admin/aggregates/panel.py b/openstack_dashboard/dashboards/admin/aggregates/panel.py
index 4d553ea87..315bef2e0 100644
--- a/openstack_dashboard/dashboards/admin/aggregates/panel.py
+++ b/openstack_dashboard/dashboards/admin/aggregates/panel.py
@@ -12,6 +12,7 @@
import logging
+from django.conf import settings
from django.utils.translation import gettext_lazy as _
import horizon
@@ -25,3 +26,9 @@ class Aggregates(horizon.Panel):
slug = 'aggregates'
policy_rules = (("compute", "compute_extension:aggregates"),)
permissions = ('openstack.services.compute',)
+
+ def allowed(self, context):
+ if (('compute' in settings.SYSTEM_SCOPE_SERVICES) !=
+ bool(context['request'].user.system_scoped)):
+ return False
+ return super().allowed(context)