c61ae4f083
As Nova's API is unified to os_compute_api, the API policies are also updated to use this format, Horizon needs to use Nova policy enforce rules in the codebase. This patch also update nova_policy.json using oslo-config-generator for Nova policy file. Co-Authored-By: Rob Cresswell <robert.cresswell@outlook.com> Implements: blueprint update-nova-enforce-policies Change-Id: Id7d01a39930c88592301a5035f0befe5293a78fa
25 lines
886 B
Python
25 lines
886 B
Python
# Copyright 2013 B1 Systems GmbH
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
|
|
class Hypervisors(horizon.Panel):
|
|
name = _("Hypervisors")
|
|
slug = 'hypervisors'
|
|
permissions = ('openstack.services.compute',)
|
|
policy_rules = (("compute", "os_compute_api:os-hypervisors"),)
|