File tree Expand file tree Collapse file tree 2 files changed +4
-13
lines changed
server/api-service/lowcoder-server/src/main/java/org/lowcoder/api Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 11package org .lowcoder .api .misc ;
22
3- import com .fasterxml .jackson .annotation .JsonProperty ;
4- import io .swagger .v3 .oas .annotations .Operation ;
5- import jakarta .annotation .Nullable ;
3+ import io .swagger .v3 .oas .annotations .Hidden ;
64import org .lowcoder .infra .constant .NewUrl ;
75import org .lowcoder .infra .constant .Url ;
86import org .springframework .web .bind .annotation .PostMapping ;
1715@ RequestMapping (value = {Url .FLOW_URL , NewUrl .FLOW_URL })
1816public interface ApiFlowEndpoints
1917{
20- String TAG_SERVER_SETTING_MANAGEMENT = "Flow APIs" ;
21-
22- @ Operation (
23- tags = TAG_SERVER_SETTING_MANAGEMENT ,
24- operationId = "flow" ,
25- summary = "Call flow api" ,
26- description = "Call flow api."
27- )
18+ @ Hidden
2819 @ PostMapping
2920 Mono <String > flow (@ RequestBody FlowRequest flowRequest );
3021 public record FlowRequest (String path ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public interface PrivateNpmRegistryEndpoint {
2121 summary = "Get NPM registry Metadata" ,
2222 description = "Retrieve the metadata of private NPM registry package within Lowcoder."
2323 )
24- @ GetMapping ("/registry/{name}" )
24+ // @GetMapping("/registry/{name}")
2525 public Mono <ResponseEntity <Resource >> getNpmPackageMeta (@ PathVariable String name );
2626
2727 @ Operation (
@@ -30,6 +30,6 @@ public interface PrivateNpmRegistryEndpoint {
3030 summary = "Get NPM registry asset" ,
3131 description = "Retrieve the asset of private NPM registry package within Lowcoder."
3232 )
33- @ GetMapping ("/package/{path}" )
33+ // @GetMapping("/package/{path}")
3434 public Mono <ResponseEntity <Resource >> getNpmPackageAsset (@ PathVariable String path );
3535}
You can’t perform that action at this time.
0 commit comments