17 lines
390 B
C#
17 lines
390 B
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Configuration;
|
|
|
|
namespace Umbraco.Web.Common.AspNetCore
|
|
{
|
|
public class AspNetCoreBackOfficeInfo : IBackOfficeInfo
|
|
{
|
|
public AspNetCoreBackOfficeInfo(IGlobalSettings globalSettings)
|
|
{
|
|
GetAbsoluteUrl = globalSettings.UmbracoPath;
|
|
}
|
|
|
|
public string GetAbsoluteUrl { get; } // TODO make absolute
|
|
|
|
}
|
|
}
|