Hello, I am finally getting around to trying out the OIDC UI claims functionality you added:
However I then realised I had no idea how to specify the target schema or site area to hide! Is that UI object containing all these settings visible from dev tools anywhere? Most information I could see was in local storage.
If I look at the elements on the Roles page I can see the values are like the following examples:
ui.schemas.hide
schema_change-control
So are those the values of the claims I should be providing to hide things?
I also according to SquidexClaimsExtensions.GetUIProperties
need to provide the following claim type when providing those claim values:
urn:squidex:custom:(my App name)
So in summary I should be adding claims when logging in using code like:
identity.AddClaim("urn:squidex:custom:(my App name)", "ui.schemas.hide", Destinations.IdentityToken);