Fixed typo in AddUnattendedInstallInstallCreateUser(this method name. (#10388)

This commit is contained in:
Andy Butland
2021-06-04 12:48:43 +02:00
committed by GitHub
parent 213b48d159
commit ec3bc95809

View File

@@ -48,11 +48,11 @@ namespace Umbraco.Extensions
.AddNuCache()
.AddDistributedCache()
.AddModelsBuilderDashboard()
.AddUnattedInstallCreateUser()
.AddUnattendedInstallInstallCreateUser()
.AddExamine()
.AddExamineIndexes();
public static IUmbracoBuilder AddUnattedInstallCreateUser(this IUmbracoBuilder builder)
public static IUmbracoBuilder AddUnattendedInstallInstallCreateUser(this IUmbracoBuilder builder)
{
builder.AddNotificationAsyncHandler<UnattendedInstallNotification, CreateUnattendedUserNotificationHandler>();
return builder;