2020-02-24 16:18:47 +01:00
|
|
|
using Umbraco.Core;
|
|
|
|
|
using Umbraco.Core.Configuration;
|
|
|
|
|
|
2020-03-27 11:39:17 +01:00
|
|
|
namespace Umbraco.Web.Common.AspNetCore
|
2020-02-24 16:18:47 +01:00
|
|
|
{
|
|
|
|
|
public class AspNetCoreBackOfficeInfo : IBackOfficeInfo
|
|
|
|
|
{
|
|
|
|
|
public AspNetCoreBackOfficeInfo(IGlobalSettings globalSettings)
|
|
|
|
|
{
|
|
|
|
|
GetAbsoluteUrl = globalSettings.UmbracoPath;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-29 22:35:52 +02:00
|
|
|
public string GetAbsoluteUrl { get; } // TODO make absolute
|
2020-02-24 16:18:47 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|