Make sure we check AS groups for lookup on bulk
This commit is contained in:
parent
b1edf26051
commit
5b48eec4a1
|
@ -421,4 +421,9 @@ class GroupsLocalHandler(object):
|
||||||
uid
|
uid
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Check AS associated groups for this user - this depends on the
|
||||||
|
# RegExps in the AS registration file (under `users`)
|
||||||
|
for app_service in self.store.get_app_services():
|
||||||
|
results[uid].extend(app_service.get_groups_for_user(uid))
|
||||||
|
|
||||||
defer.returnValue({"users": results})
|
defer.returnValue({"users": results})
|
||||||
|
|
Loading…
Reference in New Issue