python-keycloak
python-keycloak copied to clipboard
Create remove_realm_roles function
Create remove_realm_roles function in order to allow remove a specific role of an user. This function will be use the same url of assign_realm_roles.
How about using the already existing keycloak_admin.delete_realm_roles()
?
@double-a keycloak_admin.delete_realm_roles()
deletes a role completely:
What @iperrota and me are looking for is a function to unassign a real role from a single user (not deleting the entire role).
How about delete_realm_roles()
It is a DELETE on URL_ADMIN_USER_REALM_ROLES
There is a pull request #201 for this