|
@@ -104,4 +104,11 @@ public class CrowdTaskController{
|
|
Long userId = Long.parseLong((String)session.getAttribute("userId"));
|
|
Long userId = Long.parseLong((String)session.getAttribute("userId"));
|
|
return taskService.confirmFinish(projectCode, taskCode, userId);
|
|
return taskService.confirmFinish(projectCode, taskCode, userId);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @RequestMapping(value = "/jump/{projectCode}/{taskCode}/{userId}", method = RequestMethod.GET)
|
|
|
|
+ public void jumpPublicTesting(@PathVariable("projectCode") String projectCode, @PathVariable("taskCode") String taskCode,
|
|
|
|
+ @PathVariable("userId") Long userId){
|
|
|
|
+ taskService.jumpPublicTesting(projectCode,taskCode,userId);
|
|
|
|
+ }
|
|
}
|
|
}
|