Last cleanup of unused umbraco settings

This commit is contained in:
Shannon
2019-01-31 01:37:38 +11:00
parent 6b2831c606
commit f8fd255239
16 changed files with 48 additions and 226 deletions

View File

@@ -7,11 +7,8 @@ namespace Umbraco.Core.Configuration.UmbracoSettings
//disabled by default so that upgraders don't get it enabled by default
// TODO: we probably just want to disable the initial one from automatically loading ?
[ConfigurationProperty("enable", DefaultValue = false)]
public bool EnableTours
{
get { return (bool)this["enable"]; }
}
public bool EnableTours => (bool)this["enable"];
// TODO: We could have additional filters, etc... defined here
}
}
}