Skip to content

Commit

Permalink
fix: TT-169 대소문자 구별
Browse files Browse the repository at this point in the history
  • Loading branch information
snacktime81 committed Jun 30, 2024
1 parent 688b3b4 commit 88351cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public ExpectedTimeResponseDTO getScriptAndParagraphsExpectedTime(@PathVariable(
@Operation(summary = "입력(메이저) 대본 가져오기",
description = "특정 주제의 themeId를 path에 넣으면 특정 주제에 대해 입력한(메이저) 스크립트들을 응답한다.")
@Override
@GetMapping("/api/v1/themes/{themeId}/Scripts/majors")
@GetMapping("/api/v1/themes/{themeId}/scripts/majors")
public MajorScriptsResponseDTO getMajorScripts(@PathVariable("themeId") Long themeId) {
MajorScriptsResponseDTO majorScripts = scriptService.getMajorScripts(themeId);
return majorScripts;
Expand Down

0 comments on commit 88351cc

Please sign in to comment.