Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ui.md #338

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IdentityServer/v6/docs/content/samples/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ These samples illustrate customization of the [interactive pages]({{< ref "/ui"
### Custom Profile Service
This sample shows how to create a [custom profile service]({{<ref "/fundamentals/claims">}}) to control what claims are issued from your IdentityServer. The majority of the sample is captured in *CustomProfileService.cs* in the *IdentityServer* project.

Also, another part of the sample shows how to collect a custom claim during the login workflow when using an external login provider (this is done in the *ExternalLogin/Callback.cshtml.cs* processing logic). This claim value then is stored the user's session, and then ultimately is copied into the created tokens via the custom profile service logic.
Also, another part of the sample shows how to collect a custom claim during the login workflow when using an external login provider (this is done in the *ExternalLogin/Callback.cshtml.cs* processing logic). This claim value is then stored in the user's session, and is then ultimately copied into the created tokens via the custom profile service logic.

[link to source code]({{< param samples_base >}}/UserInteraction/ProfileService)

Expand Down
Loading