2018-03-20 18:21:37 +01:00
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class TourConfigElement : UmbracoConfigurationElement, ITourSection
|
|
|
|
|
|
{
|
|
|
|
|
|
//disabled by default so that upgraders don't get it enabled by default
|
2019-01-27 01:17:32 -05:00
|
|
|
|
// TODO: we probably just want to disable the initial one from automatically loading ?
|
2018-03-20 18:21:37 +01:00
|
|
|
|
[ConfigurationProperty("enable", DefaultValue = false)]
|
2019-01-31 01:37:38 +11:00
|
|
|
|
public bool EnableTours => (bool)this["enable"];
|
2018-03-20 18:21:37 +01:00
|
|
|
|
|
2019-01-27 01:17:32 -05:00
|
|
|
|
// TODO: We could have additional filters, etc... defined here
|
2018-03-20 18:21:37 +01:00
|
|
|
|
}
|
2019-01-31 01:37:38 +11:00
|
|
|
|
}
|