Skip to content

Commit 18ca20c

Browse files
author
FalkWolsky
committed
Updating Swagger Display Settings - fixing TAG in Library Query Records API
1 parent 3c499d6 commit 18ca20c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/OpenAPIDocsConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ OpenAPI customizeOpenAPI() {
6969
}
7070

7171

72-
private static String createLocalServerUrl(String domain, int port, String contextPath)
72+
/* private static String createLocalServerUrl(String domain, int port, String contextPath)
7373
{
7474
StringBuilder sb = new StringBuilder("http");
7575
@@ -86,7 +86,7 @@ private static String createLocalServerUrl(String domain, int port, String conte
8686
sb.append(contextPath);
8787
8888
return sb.toString();
89-
}
89+
} */
9090

9191
private Server createCustomServer()
9292
{

server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/query/LibraryQueryRecordEndpoints.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public interface LibraryQueryRecordEndpoints
2424
public static final String TAG_LIBRARY_QUERY_RECORDS = "Library Queries Record APIs";
2525

2626
@Operation(
27-
tags = LIBRARY_QUERY_RECORD_URL,
27+
tags = TAG_LIBRARY_QUERY_RECORDS,
2828
operationId = "deleteLibrartQueryRecord",
2929
summary = "Delete Library Query Record",
3030
description = "Permanently remove a specific Library Query Record from Lowcoder using its unique record ID."
@@ -33,7 +33,7 @@ public interface LibraryQueryRecordEndpoints
3333
public Mono<Void> delete(@PathVariable String libraryQueryRecordId);
3434

3535
@Operation(
36-
tags = LIBRARY_QUERY_RECORD_URL,
36+
tags = TAG_LIBRARY_QUERY_RECORDS,
3737
operationId = "getLibraryQueryRecord",
3838
summary = "Get Library Query Record",
3939
description = "Retrieve a specific Library Query Record within Lowcoder using the associated library query ID."
@@ -42,7 +42,7 @@ public interface LibraryQueryRecordEndpoints
4242
public Mono<ResponseView<List<LibraryQueryRecordMetaView>>> getByLibraryQueryId(@RequestParam(name = "libraryQueryId") String libraryQueryId);
4343

4444
@Operation(
45-
tags = LIBRARY_QUERY_RECORD_URL,
45+
tags = TAG_LIBRARY_QUERY_RECORDS,
4646
operationId = "listLibraryQueryRecords",
4747
summary = "Get Library Query Records",
4848
description = "Retrieve a list of Library Query Records, which store information related to executed queries within Lowcoder and the current Organization / Workspace by the impersonated User"

0 commit comments

Comments
 (0)