Skip to content

Commit

Permalink
Refactor : 학습 세트 목록 조회 postmapping -> getmapping 변경 (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
chanmin-00 committed Feb 1, 2025
1 parent 253e916 commit 9babae2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
Expand All @@ -33,7 +34,7 @@ public ResponseEntity<ApiResponse<?>> saveLearningSetsByExcel() {
}

@Operation(summary = "레벨별 학습 세트 조회", description = "레벨별 전체 학습 세트를 조회합니다.")
@PostMapping
@GetMapping
public ResponseEntity<ApiResponse<Object>> getLearningSets(
final @AuthenticationPrincipal CustomUserDetails currentUser) {

Expand Down

0 comments on commit 9babae2

Please sign in to comment.