Skip to content

Commit

Permalink
Debug : 설명수정 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaen-ing committed Jan 29, 2025
1 parent ff47944 commit 04eefc5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public ResponseEntity<ApiResponse<?>> addLevelTestQuiz(
@GetMapping("/quiz")
@Operation(
summary = "레벨 테스트 퀴즈 목록 조회",
description = "레벨 테스트 퀴즈 목록 조회를 위한 API 입니다. 인증 없이 접근가능합니다.")
description =
"레벨 테스트 퀴즈 목록 조회를 위한 API 입니다. 인증 없이 접근가능합니다. 각 레벨에서 랜덤으로 3개씩 가져옵니다. 프론트에서 문제 id와 유저 입력한 정답 캐싱이 필요합니다.")
public ResponseEntity<ApiResponse<?>> getLevelTestQuizList() {

QuizListDTO levelTestQuizList = levelTestService.getLevelTestQuizList();
Expand All @@ -56,7 +57,10 @@ public ResponseEntity<ApiResponse<?>> getLevelTestQuizList() {
}

@PostMapping("/result")
@Operation(summary = "레벨 테스트 결과 제출", description = "레벨 테스트 결과 제출을 위한 API 입니다.")
@Operation(
summary = "레벨 테스트 결과 제출",
description =
"레벨 테스트 결과 제출을 위한 API 입니다. 테스트 종료 후, 각 문제 id와 답안을 한번에 서버로 전송하면 정답률, 유저의 레벨, 틀린문제에 대한 해설을 반환합니다.")
public ResponseEntity<ApiResponse<?>> submitLevelTestResult(
@Valid @RequestBody SubmitLevelTestRequest request,
@AuthenticationPrincipal CustomUserDetails customUserDetails) {
Expand Down

0 comments on commit 04eefc5

Please sign in to comment.