add: config values
All checks were successful
continuous-integration/drone/push Build is passing

* lockout_on_failure boolean default to true
* remember_me_feature boolean, default to false
This commit is contained in:
surtur 2021-02-08 23:13:12 +01:00
parent e89f450e13
commit 344da21484
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -4,5 +4,7 @@ namespace pwt_0x01_ng
{
public static int min_passwd_length = 2;
public static int min_passwd_unique_chars = 1;
public static bool lockout_on_failure = true;
public static bool remember_me_feature = false;
}
}