Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit18ca20c

Browse files
author
FalkWolsky
committed
Updating Swagger Display Settings - fixing TAG in Library Query Records API
1 parent3c499d6 commit18ca20c

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-
privatestaticStringcreateLocalServerUrl(Stringdomain,intport,StringcontextPath)
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
privateServercreateCustomServer()
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
publicstaticfinalStringTAG_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
publicMono<Void>delete(@PathVariableStringlibraryQueryRecordId);
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
publicMono<ResponseView<List<LibraryQueryRecordMetaView>>>getByLibraryQueryId(@RequestParam(name ="libraryQueryId")StringlibraryQueryId);
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)

[8]ページ先頭

©2009-2025 Movatter.jp