Skip to content

Commit e49d1d3

Browse files
authored
Update custom-policy-configure-user-input.md
change form city to claim
1 parent 92ac1db commit e49d1d3

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
@@ -59,7 +59,7 @@ Open the extensions file of your policy. For example, <em>`SocialAndLocalAccount
5959
</ClaimType>
6060
```
6161

62-
## Add city to the user interface
62+
## Add a claim to the user interface
6363

6464
Following technical profiles are [self-asserted](self-asserted-technical-profile.md), where a user is expected to provide input:
6565

@@ -112,7 +112,7 @@ To add the city claim as an `<OutputClaim ClaimTypeReferenceId="city"/>` to the
112112
</ClaimsProvider>
113113
```
114114

115-
## Read and write the city
115+
## Read and write a claim
116116

117117
To persist the city to the user profile in the directory, you add `<PersistedClaim ClaimTypeReferenceId="city"/>` to the relevant technical profiles. To read the city from the user profile in the directory, you add `<OutputClaim ClaimTypeReferenceId="city"/>`.
118118

@@ -156,7 +156,7 @@ The following technical profiles are [Active Directory technical profile](active
156156
</ClaimsProvider>
157157
```
158158

159-
## Include the city in the token
159+
## Include a claim in the token
160160

161161
To return the city claim back to the relaying party application, add the `<OutputClaim ClaimTypeReferenceId="city" />` claim to the SignUpOrSignIn.xml file so that this claim is sent to the application in the token after a successful user journey. Modify the `TechnicalProfile Id="PolicyProfile"` element to add the city output claim as `<OutputClaim ClaimTypeReferenceId="city" />`.
162162

0 commit comments

Comments
 (0)