Skip to content

Commit 463081e

Browse files
authored
Merge pull request #4775 from Discookie/oauth_groups
Remove OAuth groups source requirements
2 parents 49ba2d1 + f4ca54f commit 463081e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web/server/codechecker_server/api/authentication.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,7 @@ def performLogin(self, auth_method, auth_string):
441441
morePages = True
442442
while morePages:
443443
for group in response["value"]:
444-
if group.get("onPremisesSyncEnabled") and \
445-
group.get("securityEnabled"):
446-
groups.append(group["displayName"])
444+
groups.append(group["displayName"])
447445
# paging of groups
448446
morePages = "@odata.nextLink" in response
449447
if morePages:

0 commit comments

Comments
 (0)