Skip to content

Commit

Permalink
fix: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
uwoobeat committed Feb 26, 2025
1 parent ff0c5d4 commit 197df55
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
@RestController
@RequestMapping("/v2/assignment-histories")
@RequiredArgsConstructor
public class StudentAssginmentHistoryControllerV2 {
public class StudentAssignmentHistoryControllerV2 {

private final StudentAssignmentHistoryServiceV2 studentAssigmentHistoryServiceV2;
private final StudentAssignmentHistoryServiceV2 studentAssignmentHistoryServiceV2;

@Operation(summary = "내 과제 제출하기", description = "나의 과제를 제출합니다. 제출된 과제는 채점되어 제출내역에 반영됩니다.")
@PostMapping("/submit")
public ResponseEntity<Void> submitMyAssignment(@RequestParam(name = "studySessionId") Long studySessionId) {
studentAssigmentHistoryServiceV2.submitAssignment(studySessionId);
studentAssignmentHistoryServiceV2.submitAssignment(studySessionId);
return ResponseEntity.ok().build();
}
}

0 comments on commit 197df55

Please sign in to comment.