Skip to content

Commit 5341c5e

Browse files
committed
Updates
1 parent c1f3267 commit 5341c5e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.openpublishing.redirection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@
13191319
"redirect_document_id": false
13201320
},
13211321
{
1322-
"source_path": "blazor/security/server/account-confirmation-and-password-recovery.md",
1322+
"source_path": "aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md",
13231323
"redirect_url": "/aspnet/core/blazor/security/account-confirmation-and-password-recovery",
13241324
"redirect_document_id": false
13251325
}

aspnetcore/blazor/security/account-confirmation-and-password-recovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The following example is based on Mailchimp's Transactional API using [Mandrill.
6767

6868
Add the [Mandrill.net](https://www.nuget.org/packages/Mandrill.net) NuGet package to the project.
6969

70-
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender>.
70+
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>.
7171

7272
`Components/Account/EmailSender.cs`:
7373

aspnetcore/blazor/security/webassembly/standalone-with-identity/account-confirmation-and-password-recovery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The following example is based on Mailchimp's Transactional API using [Mandrill.
7474

7575
Add the [Mandrill.net](https://www.nuget.org/packages/Mandrill.net) NuGet package to the backend server project.
7676

77-
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender>. In the following example, `AppUser` is a <xref:Microsoft.AspNetCore.Identity.IdentityUser>.
77+
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>. In the following example, `AppUser` is a <xref:Microsoft.AspNetCore.Identity.IdentityUser>.
7878

7979
`EmailSender.cs`:
8080

@@ -141,7 +141,7 @@ In the backend server's `Program` file, require a confirmed email to register an
141141
+ builder.Services.AddIdentityCore<AppUser>(o => o.SignIn.RequireConfirmedEmail = true)
142142
```
143143

144-
Add the following service registration to set the email sender implementation to `EmailSender` for <xref:Microsoft.AspNetCore.Identity.IEmailSender>:
144+
Add the following service registration to set the email sender implementation to `EmailSender` for <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>:
145145

146146
```csharp
147147
builder.Services.AddTransient<IEmailSender<AppUser>, EmailSender>();

aspnetcore/release-notes/aspnetcore-8.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ The Blazor project templates no longer depend on [Open Iconic](https://github.co
263263

264264
### Support for dialog cancel and close events
265265

266-
Blazor now supports the [`cancel`](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) and [`close`](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) events on the `dialog` HTML element.
266+
Blazor now supports the [`cancel`](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) and [`close`](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) events on the `dialog` HTML element.
267267

268268
In the following example:
269269

0 commit comments

Comments
 (0)