summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/routers/panel.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/admin/routers/panel.py')
-rw-r--r--openstack_dashboard/dashboards/admin/routers/panel.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/openstack_dashboard/dashboards/admin/routers/panel.py b/openstack_dashboard/dashboards/admin/routers/panel.py
index 3dc5444b1..304737e24 100644
--- a/openstack_dashboard/dashboards/admin/routers/panel.py
+++ b/openstack_dashboard/dashboards/admin/routers/panel.py
@@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
+from django.conf import settings
from django.utils.translation import gettext_lazy as _
import horizon
@@ -29,3 +30,9 @@ class Routers(horizon.Panel):
def can_register():
return setting_utils.get_dict_config(
'OPENSTACK_NEUTRON_NETWORK', 'enable_router')
+
+ def allowed(self, context):
+ if (('network' in settings.SYSTEM_SCOPE_SERVICES) !=
+ bool(context['request'].user.system_scoped)):
+ return False
+ return super().allowed(context)