Explicitly show all account, domain listings for admin

This commit is contained in:
bfederle 2012-01-09 10:44:07 -08:00
parent c581506103
commit 4bc6fd0eb9
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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) {