|
|
@@ -77,9 +77,9 @@ public class AssignmentController {
|
|
|
return MyResponse.success(assignmentService.findAssignmentPage(page, assignmentQueryDTO));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/{assignmentId}")
|
|
|
+ @GetMapping
|
|
|
public MyResponse getAssignmentById(
|
|
|
- @PathVariable Long assignmentId
|
|
|
+ @RequestParam Long assignmentId
|
|
|
) {
|
|
|
return MyResponse.success(assignmentService.findAssignmentById(assignmentId));
|
|
|
}
|