Comment 2 for bug 1321865

Revision history for this message
Pavel A. (vpaul) wrote : Re: Networks panel can't be actually disabled

yes, the bug occurs because of admin dashboard uses some parts from project including network tables.

In my case I've managed with permissions trick like:

projects_dashboard = horizon.get_dashboard("project")
networks_panel = projects_dashboard.get_panel("networks")

permissions = list(getattr(networks_panel, 'permissions', []))
permissions.append('openstack.roles.admin')
networks_panel.permissions = tuple(permissions)

Though, it should be revised I suppose.