Files
Umbraco-CMS/src/Umbraco.Configuration/Models/WebRoutingSettings.cs

24 lines
709 B
C#
Raw Normal View History

using Umbraco.Core.Models.PublishedContent;
2020-03-16 14:02:08 +01:00
namespace Umbraco.Configuration.Models
{
public class WebRoutingSettings
2020-03-16 14:02:08 +01:00
{
public bool TrySkipIisCustomErrors { get; set; } = false;
2020-03-18 11:29:29 +01:00
public bool InternalRedirectPreservesTemplate { get; set; } = false;
2020-03-16 14:02:08 +01:00
public bool DisableAlternativeTemplates { get; set; } = false;
2020-03-18 11:29:29 +01:00
public bool ValidateAlternativeTemplates { get; set; } = false;
2020-03-18 11:29:29 +01:00
public bool DisableFindContentByIdPath { get; set; } = false;
2020-03-18 11:29:29 +01:00
public bool DisableRedirectUrlTracking { get; set; } = false;
2020-03-18 11:29:29 +01:00
public string UrlProviderMode { get; set; } = UrlMode.Auto.ToString();
2020-03-18 11:29:29 +01:00
public string UmbracoApplicationUrl { get; set; }
2020-03-16 14:02:08 +01:00
}
}