Skip to content

Commit

Permalink
style(apollo-portal): Format Code
Browse files Browse the repository at this point in the history
  • Loading branch information
youngzil committed Oct 27, 2024
1 parent fdf4616 commit 093e12d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,21 @@ public OpenAppNamespaceDTO createNamespace(@PathVariable String appId,
@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces")
public List<OpenNamespaceDTO> findNamespaces(@PathVariable String appId, @PathVariable String env,
@PathVariable String clusterName,
@RequestParam(defaultValue="true") boolean fillItemDetail) {
@RequestParam(defaultValue = "true") boolean fillItemDetail) {
return this.namespaceOpenApiService.getNamespaces(appId, env, clusterName, fillItemDetail);
}

@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName:.+}")
public OpenNamespaceDTO loadNamespace(@PathVariable String appId, @PathVariable String env,
@PathVariable String clusterName, @PathVariable String namespaceName,
@RequestParam(defaultValue="true") boolean fillItemDetail) {
@RequestParam(defaultValue = "true") boolean fillItemDetail) {
return this.namespaceOpenApiService.getNamespace(appId, env, clusterName, namespaceName, fillItemDetail);
}

@GetMapping(value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/lock")
public OpenNamespaceLockDTO getNamespaceLock(@PathVariable String appId, @PathVariable String env,
@PathVariable String clusterName, @PathVariable
String namespaceName) {
String namespaceName) {
return this.namespaceOpenApiService.getNamespaceLock(appId, env, clusterName, namespaceName);
}

Expand Down

0 comments on commit 093e12d

Please sign in to comment.