2019-12-23 14:35:39 +01:00
|
|
|
|
using Umbraco.Core.Configuration.UmbracoSettings;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The password configuration for back office users
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class MemberPasswordConfiguration : PasswordConfiguration, IMemberPasswordConfiguration
|
|
|
|
|
|
{
|
2020-03-12 14:36:25 +01:00
|
|
|
|
public MemberPasswordConfiguration(IMemberPasswordConfiguration configSettings)
|
|
|
|
|
|
: base(configSettings)
|
|
|
|
|
|
{
|
2019-12-23 14:35:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|