2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core
|
2020-03-19 18:43:39 +01:00
|
|
|
|
{
|
|
|
|
|
|
public static partial class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class Configuration
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Case insensitive prefix for all configurations
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// ":" is used as marker for nested objects in json. E.g. "Umbraco:CMS:" = {"Umbraco":{"CMS":{....}}
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
public const string ConfigPrefix = "Umbraco:CMS:";
|
2020-10-21 10:29:25 +01:00
|
|
|
|
public const string ConfigContentPrefix = ConfigPrefix + "Content:";
|
|
|
|
|
|
public const string ConfigContentNotificationsPrefix = ConfigContentPrefix + "Notifications:";
|
|
|
|
|
|
public const string ConfigCorePrefix = ConfigPrefix + "Core:";
|
|
|
|
|
|
public const string ConfigCustomErrorsPrefix = ConfigPrefix + "CustomErrors:";
|
|
|
|
|
|
public const string ConfigGlobalPrefix = ConfigPrefix + "Global:";
|
2021-01-18 15:40:22 +01:00
|
|
|
|
public const string ConfigGlobalId = ConfigGlobalPrefix + "Id";
|
2020-10-21 10:29:25 +01:00
|
|
|
|
public const string ConfigHostingPrefix = ConfigPrefix + "Hosting:";
|
|
|
|
|
|
public const string ConfigModelsBuilderPrefix = ConfigPrefix + "ModelsBuilder:";
|
|
|
|
|
|
public const string ConfigSecurityPrefix = ConfigPrefix + "Security:";
|
|
|
|
|
|
public const string ConfigContentNotificationsEmail = ConfigContentNotificationsPrefix + "Email";
|
|
|
|
|
|
public const string ConfigContentMacroErrors = ConfigContentPrefix + "MacroErrors";
|
|
|
|
|
|
public const string ConfigGlobalUseHttps = ConfigGlobalPrefix + "UseHttps";
|
|
|
|
|
|
public const string ConfigHostingDebug = ConfigHostingPrefix + "Debug";
|
|
|
|
|
|
public const string ConfigCustomErrorsMode = ConfigCustomErrorsPrefix + "Mode";
|
2020-09-21 16:23:12 +02:00
|
|
|
|
public const string ConfigActiveDirectory = ConfigPrefix + "ActiveDirectory";
|
|
|
|
|
|
public const string ConfigContent = ConfigPrefix + "Content";
|
2020-10-21 10:29:25 +01:00
|
|
|
|
public const string ConfigCoreDebug = ConfigCorePrefix + "Debug";
|
2020-09-21 16:23:12 +02:00
|
|
|
|
public const string ConfigExceptionFilter = ConfigPrefix + "ExceptionFilter";
|
|
|
|
|
|
public const string ConfigGlobal = ConfigPrefix + "Global";
|
|
|
|
|
|
public const string ConfigHealthChecks = ConfigPrefix + "HealthChecks";
|
|
|
|
|
|
public const string ConfigHosting = ConfigPrefix + "Hosting";
|
|
|
|
|
|
public const string ConfigImaging = ConfigPrefix + "Imaging";
|
|
|
|
|
|
public const string ConfigExamine = ConfigPrefix + "Examine";
|
|
|
|
|
|
public const string ConfigKeepAlive = ConfigPrefix + "KeepAlive";
|
|
|
|
|
|
public const string ConfigLogging = ConfigPrefix + "Logging";
|
|
|
|
|
|
public const string ConfigMemberPassword = ConfigPrefix + "Security:MemberPassword";
|
|
|
|
|
|
public const string ConfigModelsBuilder = ConfigPrefix + "ModelsBuilder";
|
|
|
|
|
|
public const string ConfigNuCache = ConfigPrefix + "NuCache";
|
2020-12-08 12:32:19 +01:00
|
|
|
|
public const string ConfigPlugins = ConfigPrefix + "Plugins";
|
2020-09-21 16:23:12 +02:00
|
|
|
|
public const string ConfigRequestHandler = ConfigPrefix + "RequestHandler";
|
|
|
|
|
|
public const string ConfigRuntime = ConfigPrefix + "Runtime";
|
2020-10-21 10:29:25 +01:00
|
|
|
|
public const string ConfigRuntimeMinification = ConfigPrefix + "RuntimeMinification";
|
|
|
|
|
|
public const string ConfigRuntimeMinificationVersion = ConfigRuntimeMinification + ":Version";
|
2020-09-21 16:23:12 +02:00
|
|
|
|
public const string ConfigSecurity = ConfigPrefix + "Security";
|
|
|
|
|
|
public const string ConfigTours = ConfigPrefix + "Tours";
|
|
|
|
|
|
public const string ConfigTypeFinder = ConfigPrefix + "TypeFinder";
|
|
|
|
|
|
public const string ConfigWebRouting = ConfigPrefix + "WebRouting";
|
|
|
|
|
|
public const string ConfigUserPassword = ConfigPrefix + "Security:UserPassword";
|
2020-03-19 18:43:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|