Skip to content

Commit b2360f8

Browse files
authored
Update custom-policy-configure-user-input.md
Minor changes
1 parent 244867c commit b2360f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/active-directory-b2c/custom-policy-configure-user-input.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can gather initial data from your users by using the sign-up or sign-in user
2424
1. Define a "city" claim.
2525
1. Ask the user for their city.
2626
1. Persist the city to the user profile in the Azure AD B2C directory.
27-
1. Read the city claim from the user profile on each sign-in.
27+
1. Read the city claim from the Azure AD B2C directory on each sign-in.
2828
1. Return the city to your relying party application after sign-in or sign-up.
2929

3030
## Prerequisites
@@ -90,7 +90,7 @@ To collect the city claim during sign-up, it must be added as an output claim to
9090
<ClaimsProvider>
9191
```
9292

93-
To collect the city claim after initial sign-in with a social account, it must be added as an output claim to the `SelfAsserted-Social` technical profile. For social account users to be able to edit their profile data later, add the output claim to the `SelfAsserted-ProfileUpdate` technical profile. Override these technical profiles in the extension file. Specify the entire list of the output claims to control the order the claims are presented on the screen. Find the **ClaimsProviders** element. Add a new ClaimsProviders as follows:
93+
To collect the city claim after initial sign-in with a federated account, it must be added as an output claim to the `SelfAsserted-Social` technical profile. For local and federated account users to be able to edit their profile data later, add the output claim to the `SelfAsserted-ProfileUpdate` technical profile. Override these technical profiles in the extension file. Specify the entire list of the output claims to control the order the claims are presented on the screen. Find the **ClaimsProviders** element. Add a new ClaimsProviders as follows:
9494

9595
```xml
9696
<DisplayName>Self Asserted</DisplayName>
@@ -122,7 +122,7 @@ To collect the city claim after initial sign-in with a social account, it must b
122122
The following technical profiles are [Active Directory technical profiles](active-directory-technical-profile.md), which read and write data to Azure Active Directory.
123123
Use `PersistedClaims` to write data to the user profile and `OutputClaims` to read data from the user profile within the respective Active Directory technical profiles.
124124

125-
Find the **ClaimsProviders** element. Add a new ClaimsProviders as follows:
125+
Override these technical profiles in the extension file. Find the **ClaimsProviders** element. Add a new ClaimsProviders as follows:
126126

127127
```xml
128128
<ClaimsProvider>

0 commit comments

Comments
 (0)