update 优化 !pr324 代码结构

feature/model
疯狂的狮子li 2 years ago
parent 5b39017708
commit 181166f4c0

@ -156,7 +156,6 @@ public class AuthController {
* *
* @return ture false * @return ture false
*/ */
@SaIgnore
@GetMapping("/registerEnabled") @GetMapping("/registerEnabled")
public R<Boolean> registerEnabled() { public R<Boolean> registerEnabled() {
return R.ok(Convert.toBool(configService.selectConfigByKey("sys.account.registerUser"))); return R.ok(Convert.toBool(configService.selectConfigByKey("sys.account.registerUser")));

@ -57,7 +57,6 @@ public class SysLoginService {
private final CaptchaProperties captchaProperties; private final CaptchaProperties captchaProperties;
private final ISysPermissionService permissionService; private final ISysPermissionService permissionService;
private final ISysTenantService tenantService; private final ISysTenantService tenantService;
private final ISysConfigService configService; private final ISysConfigService configService;
/** /**

@ -629,7 +629,7 @@ insert into sys_config values(1, '000000', '主框架页-默认皮肤样式名
insert into sys_config values(2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, sysdate(), null, NULL, '初始化密码 123456'); insert into sys_config values(2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, sysdate(), null, NULL, '初始化密码 123456');
insert into sys_config values(3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, sysdate(), null, NULL, '深色主题theme-dark浅色主题theme-light'); insert into sys_config values(3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, sysdate(), null, NULL, '深色主题theme-dark浅色主题theme-light');
insert into sys_config values(4, '000000', '账号自助-验证码开关', 'sys.account.captchaEnabled', 'true', 'Y', 103, 1, sysdate(), null, NULL, '是否开启验证码功能true开启false关闭'); insert into sys_config values(4, '000000', '账号自助-验证码开关', 'sys.account.captchaEnabled', 'true', 'Y', 103, 1, sysdate(), null, NULL, '是否开启验证码功能true开启false关闭');
insert into sys_config values(5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'true', 'Y', 103, 1, sysdate(), null, NULL, '是否开启注册用户功能true开启false关闭'); insert into sys_config values(5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, sysdate(), null, NULL, '是否开启注册用户功能true开启false关闭');
insert into sys_config values(6, '000000', '用户配置-密码最大错误次数', 'sys.user.maxRetryCount', '5', 'Y', 103, 1, sysdate(), null, NULL, '密码最大错误次数'); insert into sys_config values(6, '000000', '用户配置-密码最大错误次数', 'sys.user.maxRetryCount', '5', 'Y', 103, 1, sysdate(), null, NULL, '密码最大错误次数');
insert into sys_config values(7, '000000', '用户配置-密码锁定时间', 'sys.user.lockTime', '10', 'Y', 103, 1, sysdate(), null, NULL, '密码锁定时间(分钟)'); insert into sys_config values(7, '000000', '用户配置-密码锁定时间', 'sys.user.lockTime', '10', 'Y', 103, 1, sysdate(), null, NULL, '密码锁定时间(分钟)');
insert into sys_config values(8, '000000', '账号自助-短信开关', 'sys.account.smsEnabled', 'false', 'Y', 103, 1, sysdate(), null, NULL, '是否开启短信功能true开启false关闭'); insert into sys_config values(8, '000000', '账号自助-短信开关', 'sys.account.smsEnabled', 'false', 'Y', 103, 1, sysdate(), null, NULL, '是否开启短信功能true开启false关闭');

Loading…
Cancel
Save