Skip to content

Commit c9e3f87

Browse files
committed
delete get method in gifticon admin
1 parent 61cab94 commit c9e3f87

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/main/kotlin/goodspace/teaming/admin/controller/GifticonAdminController.kt

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,4 @@ class GifticonAdminController(
3131

3232
return ResponseEntity("save success", HttpStatus.OK)
3333
}
34-
35-
@GetMapping
36-
@Operation(
37-
summary = "기프티콘 조회",
38-
description = "유저 이메일로 해당 유저의 기프티콘을 조회합니다."
39-
)
40-
fun getGifticon(@RequestParam email: String): ResponseEntity<List<GifticonResponseDto>>{
41-
val dtos: List<GifticonResponseDto> = gifticonService.getGifticonsByUserEmail(email)
42-
43-
44-
return ResponseEntity.ok(dtos)
45-
}
46-
4734
}

0 commit comments

Comments
 (0)