Skip to content

Commit 6c6b362

Browse files
committed
include all fields except id from getUserById in a resource
1 parent 3c3a6ce commit 6c6b362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/TeamService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async function getTeamDetail (currentUser, projects, isSearch = true) {
146146
const resource = {
147147
id: rb.id,
148148
userId: user.id,
149-
..._.pick(user, ['handle', 'firstName', 'lastName'])
149+
..._.pick(user, ['handle', 'firstName', 'lastName', 'skills'])
150150
}
151151
// If call function is not search, add jobId field
152152
if (!isSearch) {

0 commit comments

Comments
 (0)