mirror of https://github.com/apache/cloudstack.git
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:
parent
d6815742b8
commit
9014cd3101
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue