feat(system): 修改验证码默认配置为关闭
- 将 captchaEnable属性的默认值从 true 修改为 false - 此修改旨在减少不必要的麻烦,提升用户体验
This commit is contained in:
parent
29ce6e4d92
commit
dea7db83b9
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue