Skip to content

Commit 0600140

Browse files
authored
Merge pull request #13 from SpecterOps/fix/BED-8637-fix-scim-users-pagination
fix: Fix SCIM_User Collection - BED-8637
2 parents 44264a3 + 5c21383 commit 0600140

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/openhound_github/resources/organization.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1675,10 +1675,11 @@ def scim_users(ctx: SourceContext):
16751675
paginator=scim_paginator,
16761676
data_selector="Resources",
16771677
):
1678-
yield {
1679-
**page,
1680-
"org_login": org_name,
1681-
}
1678+
for user in page:
1679+
yield {
1680+
**user,
1681+
"org_login": org_name,
1682+
}
16821683

16831684

16841685
def organization_resources(ctx: SourceContext):

0 commit comments

Comments
 (0)