CLOUDSTACK-9186: Root admin cannot see VPC created by Domain admin user

Added the parameter listAll=true in case of Internal LB as well as Public LB IP addresses.
This commit is contained in:
Nitin Kumar Maharana 2015-12-18 13:23:50 +05:30
parent d6815742b8
commit 9014cd3101
1 changed files with 4 additions and 2 deletions

View File

@ -748,7 +748,8 @@
$.ajax({
url: createURL('listLoadBalancers'),
data: {
networkid: args.context.networks[0].id
networkid: args.context.networks[0].id,
listAll: true
},
success: function(json) {
var items = json.listloadbalancersresponse.loadbalancer;
@ -1132,7 +1133,8 @@
async: false,
data: {
associatednetworkid: args.context.networks[0].id,
forloadbalancing: true
forloadbalancing: true,
listall: true
},
success: function(json) {
var items = json.listpublicipaddressesresponse.publicipaddress;