Skip to content

Commit

Permalink
fix: 쿠폰 종류 조회 api 엔드포인트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook02 committed Feb 8, 2025
1 parent 7482df9 commit e2ffbb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public ResponseEntity<List<CouponResponse>> getCoupons() {
}

@Operation(summary = "쿠폰 종류 조회", description = "발급 가능한 모든 쿠폰 종류를 조회합니다.")
@GetMapping
@GetMapping("/types")
public ResponseEntity<List<CouponTypeResponse>> getCouponTypes() {
List<CouponTypeResponse> response = couponService.getCouponTypes();
return ResponseEntity.ok().body(response);
Expand Down

0 comments on commit e2ffbb5

Please sign in to comment.