Skip to content

Commit ae04ecc

Browse files
committed
[ADD] 요약문 있는 노트만 조회 API 추가
1 parent e6f3cb3 commit ae04ecc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/example/ai_tutor/domain/note/presentation/NoteController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public ResponseEntity<?> getAllNotes(
8686
@ApiResponse(responseCode = "200", description = "강의 노트 목록 조회 성공", content = { @Content(mediaType = "application/json", schema = @Schema(implementation = NoteListRes.class) ) } ),
8787
@ApiResponse(responseCode = "400", description = "강의 노트 목록 조회 실패", content = { @Content(mediaType = "application/json", schema = @Schema(implementation = ErrorResponse.class) ) } ),
8888
})
89-
@GetMapping("/summary/{folderId}")
89+
@GetMapping("/summary")
9090
public ResponseEntity<?> getAllNotesByFolderWithSummary(
9191
@AuthenticationPrincipal UserPrincipal userPrincipal,
9292
@PathVariable Long folderId

0 commit comments

Comments
 (0)