feat(system): 修改验证码默认配置为关闭

- 将 captchaEnable属性的默认值从 true 修改为 false
- 此修改旨在减少不必要的麻烦,提升用户体验
This commit is contained in:
weike001 2025-06-13 17:32:48 +08:00
parent 29ce6e4d92
commit dea7db83b9
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class AdminAuthServiceImpl implements AdminAuthService {
/** /**
* 验证码的开关默认为 true * 验证码的开关默认为 true
*/ */
@Value("${yudao.captcha.enable:true}") @Value("${yudao.captcha.enable:false}")
private Boolean captchaEnable; private Boolean captchaEnable;
@Override @Override