Remove rbac-policy callback into lib

Since most callback resources are located in neutron-lib,
rbac-policy still in [1], we can move it to the lib.

[1] https://github.com/openstack/neutron/blob/master/neutron/db/rbac_db_mixin.py#L31

Change-Id: Ib59703496bc8d13619358c39f5e01c00ee7211f4
This commit is contained in:
Dongcan Ye 2017-10-19 10:14:26 +08:00
parent b718a497d5
commit 650389054f
2 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,7 @@ PORT = 'port'
PORTS = 'ports'
PORT_DEVICE = 'port_device'
PROCESS = 'process'
RBAC_POLICY = 'rbac-policy'
ROUTER = 'router'
ROUTER_GATEWAY = 'router_gateway'
ROUTER_INTERFACE = 'router_interface'

View File

@ -0,0 +1,4 @@
---
features:
- The ``rbac-policy`` callback resource now available
as ``neutron_lib.callbacks.resources.RBAC_POLICY``.