Skip to content

Commit

Permalink
[Chore] 게임 조회 HTTP 메소드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
choeun7 authored Feb 16, 2024
1 parent ee6e338 commit 4817300
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public ResponseEntity<?> likesStore(
@ApiResponse(responseCode = "200", description = "게임 조회 누르기 성공", content = {@Content(mediaType = "application/json", schema = @Schema(implementation = FindGameRes.class))}),
@ApiResponse(responseCode = "400", description = "게임 조회 누르기 실패", content = {@Content(mediaType = "application/json", schema = @Schema(implementation = ErrorResponse.class))})
})
@PostMapping("/{storeId}/game")
@GetMapping("/{storeId}/game")
public ResponseEntity<?> findBenefitByStore(
HttpServletRequest request,
@PathVariable Long storeId
Expand Down

0 comments on commit 4817300

Please sign in to comment.