Skip to content
Snippets Groups Projects
Commit 3435e0d9 authored by Martin's avatar Martin
Browse files

filter on update

parent 9a50ddb0
No related tags found
No related merge requests found
......@@ -46,7 +46,8 @@ class KeycloakClientRemoteService {
private final Keycloak keycloak;
public void updateClient(ClientRepresentation client, String realm) {
getClientResource(realm, client.getId()).update(client);
CustomClientRepresentation ccr = filterClientRepresentation(client);
getClientResource(realm, client.getId()).update(ccr);
}
public String createClient(ClientRepresentation client, String realm) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment