修改了删除部分的controller

master
yang.yongquan 2022-07-06 16:18:52 +08:00
parent a9a662abc3
commit 1eb05a9c8a
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ public class TaskController {
@PathVariable("projectId") Integer projectId, @PathVariable("projectId") Integer projectId,
@RequestParam("taskId") Long taskId @RequestParam("taskId") Long taskId
) { ) {
taskService.deleteTaskAndSubTask(token, projectId, taskId);
return ResponseMap.ofSuccess("删除成功"); return ResponseMap.ofSuccess("删除成功");
} }