From 469fe3bd16e93d6a434985980db03bf7f93a40ca Mon Sep 17 00:00:00 2001 From: David Klempfner Date: Fri, 15 Sep 2023 16:59:50 +1000 Subject: [PATCH] Update ui.md Fixed grammar. --- IdentityServer/v6/docs/content/samples/ui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IdentityServer/v6/docs/content/samples/ui.md b/IdentityServer/v6/docs/content/samples/ui.md index 24736d42..c0949005 100644 --- a/IdentityServer/v6/docs/content/samples/ui.md +++ b/IdentityServer/v6/docs/content/samples/ui.md @@ -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]({{}}) 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)