Skip to content

Commit 373e3bc

Browse files
sonjusunsonjusun
authored andcommitted
fix : 수정 Serivce 교체 진행
- init , create 모두 사용 가능한 update 로 진행
1 parent 2b709c3 commit 373e3bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/umc/th/juinjang/api/limjang/controller/NoteControllerV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ApiResponse<UserNotesGetResponse> findUsersNotes(
6464
public ApiResponse<Void> updateNote(@PathVariable(name = "noteId") Long noteId,
6565
@RequestBody @Valid NotePatchRequest request,
6666
@AuthenticationPrincipal Member member) {
67-
noteCommandService.updateNote(noteId, request);
67+
noteCommandService.updateNoteV2(noteId, request);
6868
return ApiResponse.onSuccess(null);
6969
}
7070

0 commit comments

Comments
 (0)