horizon/openstack_dashboard/dashboards/admin/volume_groups/panel.py
manchandavishal 6084b329f5 Add volume-group table actions for admin panel
This commit allows admin to perform the following
table action :
1. manage volumes (Add/remove volumes from group),
2. remove all volumes from group
3. delete group

Partially-Implements blueprint cinder-generic-volume-groups

Change-Id: I7fcc0dfa8195ecb7914a883fec85c573caa4ae86
2019-01-31 05:58:39 +00:00

21 lines
805 B
Python

# Copyright 2019 NEC Corporation
#
# 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 openstack_dashboard.dashboards.project.volume_groups \
import panel as project_panel
class VolumeGroups(project_panel.VolumeGroups):
policy_rules = (("volume", "context_is_admin"),)