I changed some codes of searchForMembersStream() so that it can search the members of organization with multiple user's name as query parameter. This is related to this issue 132
With this function, it is possible to search users of organization with multiple names in one api like below.
GET /realms/{realm}/orgs/{orgId}/members?search=jack,jillGET /realms/{realm}/orgs/{orgId}/members?search=, jack, john, mary
I used the comma as delimiter as shown in the issue.
I changed some codes of
searchForMembersStream()
so that it can search the members of organization with multiple user's name as query parameter. This is related to this issue 132With this function, it is possible to search users of organization with multiple names in one api like below.
GET /realms/{realm}/orgs/{orgId}/members?search=jack,jill
GET /realms/{realm}/orgs/{orgId}/members?search=, jack, john, mary
I used the comma as delimiter as shown in the issue.