Add exporting individual attributes and a map endpoint #26

Merged
stb merged 2 commits from add-map-endpoint into main 2026-07-21 21:47:25 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 91c32295d5 - Show all commits

Address junes comments
All checks were successful
/ Verify (pull_request) Successful in 52s

Stefan Bethke 2026-07-21 21:46:32 +02:00

View file

@ -1,7 +1,7 @@
# Attribute Endpoints Provider - Export User Attributes # Attribute Endpoints Provider - Export User Attributes
This is a Keycloak Provider that exports user profile attribute values. This is a Keycloak Provider that exports user profile attribute values.
The selection of attributes and authorization is manage through an endpoint configuration. The selection of attributes and authorization is managed through an endpoint configuration in the Keycloak admin website.
stb marked this conversation as resolved Outdated

"The selection of attributes and authorization is managed through an endpoint configuration via the admin UI."

"The selection of attributes and authorization is managed through an endpoint configuration via the admin UI."
## Usage ## Usage

View file

@ -128,6 +128,7 @@ public class AdminUiPage implements UiPageProvider, UiPageProviderFactory<Compon
.add() .add()
.property() .property()
// keep old name for backwards compatibility
stb marked this conversation as resolved Outdated

Let's have a comment here to note that we leave this name for backwards compatibility.

Let's have a comment here to note that we leave this name for backwards compatibility.
.name("attribute-group") .name("attribute-group")
.label("Attribute Name or Group") .label("Attribute Name or Group")
.helpText("The attribute or attribute group to export.") .helpText("The attribute or attribute group to export.")