mirror of https://github.com/apache/cloudstack.git
Explicitly show all account, domain listings for admin
This commit is contained in:
parent
c581506103
commit
4bc6fd0eb9
|
|
@ -199,7 +199,7 @@
|
|||
if("domains" in args.context)
|
||||
array1.push("&domainid=" + args.context.domains[0].id);
|
||||
$.ajax({
|
||||
url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
|
||||
url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("") + '&listAll=true'),
|
||||
dataType: "json",
|
||||
async: true,
|
||||
success: function(json) {
|
||||
|
|
|
|||
|
|
@ -317,7 +317,7 @@
|
|||
var parentDomain = args.context.parentDomain;
|
||||
if(parentDomain == null) { //draw root node
|
||||
$.ajax({
|
||||
url: createURL("listDomains&id=" + g_domainid),
|
||||
url: createURL("listDomains&id=" + g_domainid + '&listAll=true'),
|
||||
dataType: "json",
|
||||
async: false,
|
||||
success: function(json) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue