1. Add port list page, the old virtual adapter list page only show the compute:nova bouned ports and unbouned ports 2. Update actions's allowed check: detach fip 3. Update port store: from virtualAdatperStore to portStore 4. Adjust file/folder path: from virtualAdapter to port Change-Id: Iceec96731a9fd17de429b4e6061490a26e562162
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
import globalFloatingIpsStore from 'stores/neutron/floatingIp';
|
|
import globalImageStore from 'stores/glance/image';
|
|
import globalServerStore from 'stores/nova/instance';
|
|
import globalKeypairStore from 'stores/nova/keypair';
|
|
import globalNetworkStore from 'stores/neutron/network';
|
|
import globalPortForwardingStore from 'stores/neutron/port-forwarding';
|
|
import globalQoSPolicyStore from 'stores/neutron/qos-policy';
|
|
import globalRecycleBinStore from 'stores/skyline/recycle-server';
|
|
import globalSecurityGroupStore from 'stores/neutron/security-group';
|
|
import globalSecurityGroupRuleStore from 'stores/neutron/security-rule';
|
|
import globalServerGroupStore from 'stores/nova/server-group';
|
|
import globalSnapshotStore from 'stores/cinder/snapshot';
|
|
import globalStaticRouteStore from 'stores/neutron/static-route';
|
|
import globalSubnetStore from 'stores/neutron/subnet';
|
|
import globalPortStore from 'stores/neutron/port-extension';
|
|
import globalVolumeStore from 'stores/cinder/volume';
|
|
import globalComputeHostStore from 'stores/nova/compute-host';
|
|
import globalHypervisorStore from 'stores/nova/hypervisor';
|
|
import globalStackStore from 'stores/heat/stack';
|
|
|
|
export default {
|
|
globalFloatingIpsStore,
|
|
globalImageStore,
|
|
globalServerStore,
|
|
globalKeypairStore,
|
|
globalNetworkStore,
|
|
globalPortForwardingStore,
|
|
globalQoSPolicyStore,
|
|
globalRecycleBinStore,
|
|
globalSecurityGroupStore,
|
|
globalSecurityGroupRuleStore,
|
|
globalServerGroupStore,
|
|
globalSnapshotStore,
|
|
globalStaticRouteStore,
|
|
globalSubnetStore,
|
|
globalVolumeStore,
|
|
globalComputeHostStore,
|
|
globalHypervisorStore,
|
|
globalStackStore,
|
|
globalPortStore,
|
|
};
|