refactor: CommonController 迁移至 system 模块、OnlineUserController 迁移至 system/auth 模块

This commit is contained in:
2025-07-17 22:39:32 +08:00
parent 6136797588
commit 08f45b5f4d
7 changed files with 9 additions and 14 deletions

View File

@@ -44,12 +44,7 @@ public class GlobalSpringDocConfiguration {
return GroupedOpenApi.builder()
.group("common")
.displayName("通用接口")
.pathsToMatch("/common/**", "/captcha/**", "/dashboard/**")
.pathsToMatch("/captcha/**", "/dashboard/**")
.build();
}
@Bean
public GroupedOpenApi monitorApi() {
return GroupedOpenApi.builder().group("monitor").displayName("系统监控").pathsToMatch("/monitor/**").build();
}
}