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 1
1
package org .lowcoder .api .misc ;
2
2
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 ;
6
4
import org .lowcoder .infra .constant .NewUrl ;
7
5
import org .lowcoder .infra .constant .Url ;
8
6
import org .springframework .web .bind .annotation .PostMapping ;
17
15
@ RequestMapping (value = {Url .FLOW_URL , NewUrl .FLOW_URL })
18
16
public interface ApiFlowEndpoints
19
17
{
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
28
19
@ PostMapping
29
20
Mono <String > flow (@ RequestBody FlowRequest flowRequest );
30
21
public record FlowRequest (String path ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public interface PrivateNpmRegistryEndpoint {
21
21
summary = "Get NPM registry Metadata" ,
22
22
description = "Retrieve the metadata of private NPM registry package within Lowcoder."
23
23
)
24
- @ GetMapping ("/registry/{name}" )
24
+ // @GetMapping("/registry/{name}")
25
25
public Mono <ResponseEntity <Resource >> getNpmPackageMeta (@ PathVariable String name );
26
26
27
27
@ Operation (
@@ -30,6 +30,6 @@ public interface PrivateNpmRegistryEndpoint {
30
30
summary = "Get NPM registry asset" ,
31
31
description = "Retrieve the asset of private NPM registry package within Lowcoder."
32
32
)
33
- @ GetMapping ("/package/{path}" )
33
+ // @GetMapping("/package/{path}")
34
34
public Mono <ResponseEntity <Resource >> getNpmPackageAsset (@ PathVariable String path );
35
35
}
You can’t perform that action at this time.
0 commit comments