Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit c2a2f5b

Browse files
Fix issue where users groups were not being returned
1 parent 7faabda commit c2a2f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/group-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function getGroups (universalUID) {
2020
try {
2121
const resp = await axios({
2222
method: 'get',
23-
params: { universalUID },
23+
params: { universalUID, membershipType: 'user' },
2424
url: config.GROUP_API_URL,
2525
headers: { Authorization: `Bearer ${m2mToken}` }
2626
})

0 commit comments

Comments
 (0)