Skip to content

Commit 4bc6fd0

Browse files
committed
Explicitly show all account, domain listings for admin
1 parent c581506 commit 4bc6fd0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ui/scripts/accounts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
if("domains" in args.context)
200200
array1.push("&domainid=" + args.context.domains[0].id);
201201
$.ajax({
202-
url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("")),
202+
url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("") + '&listAll=true'),
203203
dataType: "json",
204204
async: true,
205205
success: function(json) {

ui/scripts/domains.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
var parentDomain = args.context.parentDomain;
318318
if(parentDomain == null) { //draw root node
319319
$.ajax({
320-
url: createURL("listDomains&id=" + g_domainid),
320+
url: createURL("listDomains&id=" + g_domainid + '&listAll=true'),
321321
dataType: "json",
322322
async: false,
323323
success: function(json) {

0 commit comments

Comments
 (0)