Skip to content

Commit 5ddd937

Browse files
committed
Add alert box
1 parent d2fc012 commit 5ddd937

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

content/en/docs/marketplace/platform-supported-content/services/oidc-provider.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ Typically you want to propagate the end-user’s identity from the OIDC Provider
373373
To pass this additional information, you need to create custom claims. You can do this as follows:
374374

375375
1. Create a microflow with prefix `OIDCP_CustClaim` that returns a value to be used in the claim.
376-
377376
* Input: `Administration.Account`
378377
* Output: Any custom Claim object
379378

@@ -382,27 +381,24 @@ To pass this additional information, you need to create custom claims. You can d
382381
The ID-token will be a nested JSON structure with the name of the object as the key, a list of attribute names of your object as the keys, and the attribute values as the values.
383382

384383
```json
385-
"MyObjectName": {
386-
"MyObjectAttribute1Name" : "MyObjectAttribute1Value",
387-
"MyObjectAttribute2Name" : "MyObjectAttribute2Value"
388-
}
384+
"MyObjectName": {
385+
"MyObjectAttribute1Name" : "MyObjectAttribute1Value",
386+
"MyObjectAttribute2Name" : "MyObjectAttribute2Value"
387+
}
389388
```
390389

391390
"MyObjectName" will be used as the claim name. See note about how to name custom claims in the [Propagate Custom Claims](#propagate-custom-claims) section, above.
392391

393-
If you are already using custom claims in an earlier version of the module, you must:
394-
395-
* Rename existing microflows to begin with `OIDCP_CustClaim`.
396-
397-
* Reconfigure the custom claim settings to point to the renamed microflows.
392+
{{% alert color="info" %}}If you are already using custom claims with a version below 5.0.0 of the module, you must rename existing microflows to begin with `OIDCP_CustClaim` and reconfigure the custom claim settings to point to the renamed microflows.
393+
{{% /alert %}}
398394

399395
2. Run (publish) your app.
400396
3. Sign in to your app as an Administrator.
401397
4. Open the **Mx Objects** overview page and synchronize the required modules to see the new microflow.
402398
5. Follow the navigation item OpenID Connect to open the page `OpenIDConnectDashboard`.
403399
6. Switch to the Custom claims tab of your registered client.
404400
7. Create a new claim.
405-
* Provide a name for claim
401+
* Provide a name for a claim
406402
* Select the microflow which returns the value to the claim
407403
8. Save the claim.
408404

0 commit comments

Comments
 (0)