Change keycloak user interface

Hi to all, I need to make some change to keycloak user interface. in particular I have to show in the client section also the client name and make the interface to search also the client name:

is possible to do it?

thanks

You can create an admin theme that overrides elements of the default. Documentation is here Server Developer Guide , the default theme code is here keycloak/themes/src/main/resources/theme/base/admin at main · keycloak/keycloak · GitHub , and some examples here keycloak/examples/themes at main · keycloak/keycloak · GitHub

1 Like

Hi, thanks for reply. so is possible to add a column in the client list, anyone know if is possible to change the sql query for search the client name and the client id?

thanks

so is possible to add a column in the client list

Yes. You can implement it by overriding that page.

anyone know if is possible to change the sql query for search the client name and the client id?

You can use the existing API request that the Admin UI uses. It is documented here https://www.keycloak.org/docs-api/17.0/rest-api/index.html#_getclients . If you set the search field to true, then it treats the search query q as a string search for the name.

Also, this forum works best for help when you read the documentation and try something yourself first. It’s much easier for people to be helpful if there is specific context for a problem, rather than general questions.

1 Like

Xgp, thanks for your support! really appreciate.