Browse Source
Merge branch 'master' of bitbucket.org:kukrilabs/python-keycloak
* 'master' of bitbucket.org:kukrilabs/python-keycloak:
Fix tab
Fix a bug in the subgroup searching
pull/12/head
Ewan Jones
7 years ago
No known key found for this signature in database
GPG Key ID: E34E7F21D7272734
1 changed files with
6 additions and
3 deletions
-
keycloak/keycloak_admin.py
|
@ -426,9 +426,12 @@ class KeycloakAdmin: |
|
|
if group['path'] == path: |
|
|
if group['path'] == path: |
|
|
return group |
|
|
return group |
|
|
elif search_in_subgroups and group["subGroups"]: |
|
|
elif search_in_subgroups and group["subGroups"]: |
|
|
res = self.get_subgroups(group, path) |
|
|
|
|
|
if res != None: |
|
|
|
|
|
return res |
|
|
|
|
|
|
|
|
for group in group["subGroups"]: |
|
|
|
|
|
if group['path'] == path: |
|
|
|
|
|
return group |
|
|
|
|
|
res = self.get_subgroups(group, path) |
|
|
|
|
|
if res != None: |
|
|
|
|
|
return res |
|
|
return None |
|
|
return None |
|
|
|
|
|
|
|
|
def create_group(self, payload, parent=None, skip_exists=False): |
|
|
def create_group(self, payload, parent=None, skip_exists=False): |
|
|