From dea7db83b9c6e1b76a40ee4297e9e1a020cf61ab Mon Sep 17 00:00:00 2001 From: weike001 Date: Fri, 13 Jun 2025 17:32:48 +0800 Subject: [PATCH] =?UTF-8?q?feat(system):=20=E4=BF=AE=E6=94=B9=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E7=A0=81=E9=BB=98=E8=AE=A4=E9=85=8D=E7=BD=AE=E4=B8=BA?= =?UTF-8?q?=E5=85=B3=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 captchaEnable属性的默认值从 true 修改为 false - 此修改旨在减少不必要的麻烦,提升用户体验 --- .../yudao/module/system/service/auth/AdminAuthServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java index 791a3ef..86c4888 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java @@ -68,7 +68,7 @@ public class AdminAuthServiceImpl implements AdminAuthService { /** * 验证码的开关,默认为 true */ - @Value("${yudao.captcha.enable:true}") + @Value("${yudao.captcha.enable:false}") private Boolean captchaEnable; @Override