fix(common): 补充 captcha 和 dashboard 接口的文档分组路径

This commit is contained in:
liquor
2025-06-20 08:37:36 +00:00
committed by Charles7c
parent 29af8509e1
commit ca320c7a17

View File

@@ -41,7 +41,11 @@ public class GlobalSpringDocConfiguration {
@Bean
public GroupedOpenApi commonApi() {
return GroupedOpenApi.builder().group("common").displayName("通用接口").pathsToMatch("/common/**").build();
return GroupedOpenApi.builder()
.group("common")
.displayName("通用接口")
.pathsToMatch("/common/**", "/captcha/**", "/dashboard/**")
.build();
}
@Bean