Skip to content

Commit

Permalink
Add google workspace (#14)
Browse files Browse the repository at this point in the history
* Added ability to use google workspace

* Added ability to use google workspace

* Fixed tests

* Moved to use email as user id
  • Loading branch information
rorylshanks authored Jan 24, 2024
1 parent 248fa68 commit 079b343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/idp_adapters/googleworkspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async function getUsersAndGroups() {
surname: user.name.familyName,
userPrincipalName: user.primaryEmail,
mail: user.primaryEmail,
id: user.id,
id: user.primaryEmail,
groups: groups ? groups.map(group => group.name) : []
};
}
Expand Down

0 comments on commit 079b343

Please sign in to comment.