chore: 分支合并
This commit is contained in:
@@ -75,8 +75,10 @@ public class SecurityConfig {
|
|||||||
"/doc.html",
|
"/doc.html",
|
||||||
"/swagger-resources/**",
|
"/swagger-resources/**",
|
||||||
"/v3/api-docs/**",
|
"/v3/api-docs/**",
|
||||||
|
"/swagger-ui/**",
|
||||||
"/swagger-ui.html",
|
"/swagger-ui.html",
|
||||||
"/ws/**"
|
"/ws/**",
|
||||||
|
"/ws-app/**"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -19,6 +19,6 @@ public class CaptchaResult {
|
|||||||
private String verifyCodeKey;
|
private String verifyCodeKey;
|
||||||
|
|
||||||
@Schema(description = "验证码图片Base64字符串")
|
@Schema(description = "验证码图片Base64字符串")
|
||||||
private String verifyCodeBase64;
|
private String captchaImgBase64;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ public class AuthServiceImpl implements AuthService {
|
|||||||
|
|
||||||
return CaptchaResult.builder()
|
return CaptchaResult.builder()
|
||||||
.verifyCodeKey(verifyCodeKey)
|
.verifyCodeKey(verifyCodeKey)
|
||||||
.verifyCodeBase64(captchaBase64)
|
.captchaImgBase64(captchaBase64)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user