diff --git a/src/commands/list.command.ts b/src/commands/list.command.ts index b28f573c93..c36fc32fdc 100644 --- a/src/commands/list.command.ts +++ b/src/commands/list.command.ts @@ -161,7 +161,7 @@ export class ListCommand { try { let response: ApiListResponse; - if (organization.isAdmin) { + if (organization.canManageAllCollections) { response = await this.apiService.getCollections(cmd.organizationid); } else { response = await this.apiService.getUserCollections();