mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
Fix minimum registration password length
This commit is contained in:
parent
9b404e330d
commit
c93f217033
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ namespace BTCPayServer.Hosting
|
|||
services.Configure<IdentityOptions>(options =>
|
||||
{
|
||||
options.Password.RequireDigit = false;
|
||||
options.Password.RequiredLength = 7;
|
||||
options.Password.RequiredLength = 6;
|
||||
options.Password.RequireLowercase = false;
|
||||
options.Password.RequireNonAlphanumeric = false;
|
||||
options.Password.RequireUppercase = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue