Skip to content

Commit

Permalink
add debug line to api call
Browse files Browse the repository at this point in the history
  • Loading branch information
skykanin committed Dec 3, 2024
1 parent 48983f9 commit 49c0415
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ interface Group {
const GROUPS_URL = `${DAPLA_TEAM_API_URL}/groups`

const fetchGroupMembership = async (groupUniformName: string): Promise<Group> => {
console.log(`API CALL /groups/{groupName}/users for groupName: ${groupUniformName}`)
const groupsUrl = new URL(`${GROUPS_URL}/${groupUniformName}/users`, window.location.origin)
const embeds = ['users']
const selects = ['uniform_name', 'users.principal_name']
Expand Down

0 comments on commit 49c0415

Please sign in to comment.