mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-352: Fix user dashboard VM count
Pass listAll=true to user dashboard API call, so domain admin can see totals for all user VMs.
This commit is contained in:
parent
1d458c7a2d
commit
f72434261c
|
|
@ -31,6 +31,9 @@
|
|||
instances: function(data) {
|
||||
$.ajax({
|
||||
url: createURL('listVirtualMachines'),
|
||||
data: {
|
||||
listAll: true
|
||||
},
|
||||
success: function(json) {
|
||||
var instances = json.listvirtualmachinesresponse.virtualmachine ?
|
||||
json.listvirtualmachinesresponse.virtualmachine : [];
|
||||
|
|
|
|||
Loading…
Reference in New Issue