Skip to content

Commit f4710db

Browse files
CR-14966 CLI no longer shows user IDs (#756)
* CR-14966 CLI no longer shows user IDs * CR-14966 CLI no longer shows user IDs
1 parent a5008e4 commit f4710db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/logic/entities/Team.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Team extends Entity {
2828
type: response.type,
2929
account: response.account,
3030
tags: response.tags,
31-
users: response.users.map(({ id, userName }) => ({ id, userName })),
31+
users: response.users.map(({ _id, userName }) => ({ id: _id, userName })),
3232
});
3333
}
3434
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.80.0",
3+
"version": "0.80.1",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,
@@ -113,4 +113,4 @@
113113
"./test-setup.js"
114114
]
115115
}
116-
}
116+
}

0 commit comments

Comments
 (0)