move enable_two_factor, enable_forget_password and forget_password_require_email_verify option to the auth section

This commit is contained in:
MaysWind
2025-09-26 21:51:26 +08:00
parent 76ce6f6f9c
commit eb13f10121
2 changed files with 37 additions and 23 deletions
+10 -9
View File
@@ -269,6 +269,16 @@ max_failures_per_ip_per_minute = 5
# Maximum count of password / token check failures (0 - 4294967295) per user per minute (use the above duplicate checker), default is 5, set to 0 to disable
max_failures_per_user_per_minute = 5
[auth]
# Set to true to enable two-factor authorization
enable_two_factor = true
# Set to true to allow users to reset password
enable_forget_password = true
# Set to true to require email must be verified when use forget password
forget_password_require_email_verify = false
[user]
# Set to true to allow users to register account by themselves
enable_register = true
@@ -279,15 +289,6 @@ enable_email_verify = false
# Set to true to require email must be verified when login
enable_force_email_verify = false
# Set to true to allow users to reset password
enable_forget_password = true
# Set to true to require email must be verified when use forget password
forget_password_require_email_verify = false
# Set to true to enable two-factor authorization
enable_two_factor = true
# Set to true to allow users to upload transaction pictures
enable_transaction_picture = true