fix: lower admin password minimum

This commit is contained in:
2026-08-22 21:13:57 +08:00
parent 716c2917d4
commit 78c42eff53
7 changed files with 32 additions and 16 deletions
@@ -0,0 +1,7 @@
namespace MiaoJiZhang.Api.Services;
public static class AdminPasswordPolicy
{
public const int MinLength = 6;
public const int MaxLength = 128;
}