File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
server/api-service/lowcoder-server
src/main/java/org/lowcoder/api Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 77
77
<groupId >org.springdoc</groupId >
78
78
<artifactId >springdoc-openapi-starter-webflux-ui</artifactId >
79
79
</dependency >
80
- <dependency >
81
- <groupId >org.springdoc</groupId >
82
- <artifactId >springdoc-openapi-webflux-ui</artifactId >
83
- <version >1.8.0</version >
84
- </dependency >
85
80
<dependency >
86
81
<groupId >io.projectreactor.tools</groupId >
87
82
<artifactId >blockhound</artifactId >
Original file line number Diff line number Diff line change 12
12
import io .swagger .v3 .oas .models .servers .ServerVariables ;
13
13
import io .swagger .v3 .oas .models .tags .Tag ;
14
14
import org .lowcoder .sdk .config .CommonConfig ;
15
- import org .springdoc .core .customizers .OpenApiCustomiser ;
15
+ import org .springdoc .core .customizers .OpenApiCustomizer ;
16
16
import org .springframework .beans .factory .annotation .Autowired ;
17
17
import org .springframework .beans .factory .annotation .Value ;
18
18
import org .springframework .context .annotation .Bean ;
@@ -135,7 +135,7 @@ private Server createCustomServer() {
135
135
* Customizes the OpenAPI spec at runtime to sort tags and paths.
136
136
*/
137
137
@ Bean
138
- public OpenApiCustomiser sortOpenApiSpec () {
138
+ public OpenApiCustomizer sortOpenApiSpec () {
139
139
return openApi -> {
140
140
// Sort tags alphabetically
141
141
if (openApi .getTags () != null ) {
You can’t perform that action at this time.
0 commit comments