Skip to content

Commit 2702f0f

Browse files
committed
feat(cli): include userId in admin user list output
1 parent 3b145e5 commit 2702f0f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/cli/src/commands/admin.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ usersCmd
4848
} else {
4949
const data: string[][] = [
5050
[
51+
"id",
5152
"Name",
5253
"Email",
5354
"Num Bookmarks",
@@ -67,6 +68,7 @@ usersCmd
6768
const assetSizesDisplay = `${toHumanReadableSize(stats.assetSizes)} / ${user.storageQuota ? toHumanReadableSize(user.storageQuota) : "Unlimited"}`;
6869

6970
data.push([
71+
user.id,
7072
user.name,
7173
user.email,
7274
numBookmarksDisplay,

0 commit comments

Comments
 (0)