Skip to content

Commit

Permalink
Sync user emails on team (#314)
Browse files Browse the repository at this point in the history
* Sync user emails

* saveS
  • Loading branch information
michaelfarrell76 authored Mar 8, 2024
1 parent 7c8a95f commit a53bc66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/cli",
"description": "Small package containing useful typescript utilities.",
"version": "4.132.0",
"version": "4.132.1",
"homepage": "https://github.com/transcend-io/cli",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/syncTeams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function createTeam(
ssoDepartment: team['sso-department'],
ssoGroup: team['sso-group'],
scopes: team.scopes,
// TODO: https://transcend.height.app/T-31574 - add users
userEmails: team.users,
};

const { createTeam } = await makeGraphQLRequest<{
Expand Down Expand Up @@ -67,7 +67,7 @@ export async function updateTeam(
ssoDepartment: input['sso-department'],
ssoGroup: input['sso-group'],
scopes: input.scopes,
// TODO: https://transcend.height.app/T-31574 - add users
userEmails: input.users,
},
});
return updateTeam.team;
Expand Down

0 comments on commit a53bc66

Please sign in to comment.