From 03fef57e7e061148a5ced5c83f79c61a68f2ffa3 Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Mon, 01 Apr 2024 11:57:51 +0800
Subject: [PATCH] 议事用户导出
---
src/main/java/org/springblade/common/config/SwaggerConfiguration.java | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/main/java/org/springblade/common/config/SwaggerConfiguration.java b/src/main/java/org/springblade/common/config/SwaggerConfiguration.java
index 1a0bdd4..fdd1466 100644
--- a/src/main/java/org/springblade/common/config/SwaggerConfiguration.java
+++ b/src/main/java/org/springblade/common/config/SwaggerConfiguration.java
@@ -57,21 +57,21 @@
*/
private final OpenApiExtensionResolver openApiExtensionResolver;
- @Bean
- public Docket authDocket() {
- return docket("授权模块", Collections.singletonList(AppConstant.BASE_PACKAGES + ".modules.auth"));
- }
+// @Bean
+// public Docket authDocket() {
+// return docket("授权模块", Collections.singletonList(AppConstant.BASE_PACKAGES + ".modules.auth"));
+// }
@Bean
public Docket sysDocket() {
return docket("系统模块",
- Arrays.asList(AppConstant.BASE_PACKAGES + ".modules.system", AppConstant.BASE_PACKAGES + ".modules.resource"));
+ Arrays.asList(AppConstant.BASE_PACKAGES));
}
- @Bean
- public Docket flowDocket() {
- return docket("工作流模块", Collections.singletonList(AppConstant.BASE_PACKAGES + ".flow"));
- }
+// @Bean
+// public Docket flowDocket() {
+// return docket("工作流模块", Collections.singletonList(AppConstant.BASE_PACKAGES + ".flow"));
+// }
private Docket docket(String groupName, List<String> basePackages) {
return new Docket(DocumentationType.SWAGGER_2)
--
Gitblit v1.9.3