@@ -83,21 +83,21 @@ public OpenAppNamespaceDTO createNamespace(@PathVariable String appId,
8383 @ GetMapping (value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces" )
8484 public List <OpenNamespaceDTO > findNamespaces (@ PathVariable String appId , @ PathVariable String env ,
8585 @ PathVariable String clusterName ,
86- @ RequestParam (defaultValue = "true" ) boolean fillItemDetail ) {
86+ @ RequestParam (defaultValue = "true" ) boolean fillItemDetail ) {
8787 return this .namespaceOpenApiService .getNamespaces (appId , env , clusterName , fillItemDetail );
8888 }
8989
9090 @ GetMapping (value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName:.+}" )
9191 public OpenNamespaceDTO loadNamespace (@ PathVariable String appId , @ PathVariable String env ,
9292 @ PathVariable String clusterName , @ PathVariable String namespaceName ,
93- @ RequestParam (defaultValue = "true" ) boolean fillItemDetail ) {
93+ @ RequestParam (defaultValue = "true" ) boolean fillItemDetail ) {
9494 return this .namespaceOpenApiService .getNamespace (appId , env , clusterName , namespaceName , fillItemDetail );
9595 }
9696
9797 @ GetMapping (value = "/openapi/v1/envs/{env}/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/lock" )
9898 public OpenNamespaceLockDTO getNamespaceLock (@ PathVariable String appId , @ PathVariable String env ,
9999 @ PathVariable String clusterName , @ PathVariable
100- String namespaceName ) {
100+ String namespaceName ) {
101101 return this .namespaceOpenApiService .getNamespaceLock (appId , env , clusterName , namespaceName );
102102 }
103103
0 commit comments