From abeda1dfce8f56391b1b552c64c7446786279cdd Mon Sep 17 00:00:00 2001 From: Salem Wafi Date: Sat, 5 Mar 2022 11:26:15 -0600 Subject: [PATCH] updated README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 68a2dc5..302f6cb 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,9 @@ client = keycloak_admin.get_client(client_id="client_id") # Get all roles for the realm or client realm_roles = keycloak_admin.get_realm_roles() +# Get all roles for the realm or client that their names includes the searched text +realm_roles = keycloak_admin.get_realm_roles(search_text="company548test_") + # Get all roles for the client client_roles = keycloak_admin.get_client_roles(client_id="client_id")