|
@@ -105,7 +105,7 @@ public class PipelineController {
|
|
|
@ApiImplicitParam(name = "pipelineId", dataType ="int",paramType = "query"),
|
|
@ApiImplicitParam(name = "pipelineId", dataType ="int",paramType = "query"),
|
|
|
})
|
|
})
|
|
|
@DeleteMapping
|
|
@DeleteMapping
|
|
|
- public Response<Object> deletePipelineInfo(Integer projectId,Integer pipelineId) throws AccessDeniedException {
|
|
|
|
|
|
|
+ public Response<Object> deletePipelineInfo(@RequestParam("projectId")Integer projectId,@RequestParam("pipelineId")Integer pipelineId) throws AccessDeniedException {
|
|
|
pipelineService.deletePipelineConfig(projectId, pipelineId);
|
|
pipelineService.deletePipelineConfig(projectId, pipelineId);
|
|
|
return Response.buildSuccess();
|
|
return Response.buildSuccess();
|
|
|
}
|
|
}
|