https://dev.azure.com/umbraco/D-Team%20Tracker/_workitems/edit/6587 - Moved controllers: HealthCheckController + All localization files + fixed issues with MapPath from wwwroot to content root

This commit is contained in:
Bjarke Berg
2020-05-25 14:50:51 +02:00
parent ee3615e36d
commit 2c2d70c500
37 changed files with 4290 additions and 4311 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using Umbraco.Core.Hosting;
using Umbraco.Core.IO;
using Umbraco.Core.Logging;
using Umbraco.Core.Services;
@@ -12,8 +13,8 @@ namespace Umbraco.Web.HealthCheck.Checks.Config
{
private const string DefaultFromEmail = "your@email.here";
public NotificationEmailCheck(ILocalizedTextService textService, IIOHelper ioHelper, ILogger logger)
: base(textService, ioHelper, logger)
public NotificationEmailCheck(ILocalizedTextService textService, IHostingEnvironment hostingEnvironment, ILogger logger)
: base(textService, hostingEnvironment, logger)
{ }
public override string FilePath => "~/Config/umbracoSettings.config";