Skip to content

Commit

Permalink
refactor: 불필요한 어노테이션 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
TaeyeonRoyce committed May 27, 2024
1 parent 3510c12 commit d672574
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import io.swagger.v3.oas.annotations.security.SecurityRequirement
import io.swagger.v3.oas.annotations.tags.Tag
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.ModelAttribute
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping
Expand Down Expand Up @@ -59,7 +58,7 @@ class OrderController(
@GetMapping
fun readAll(
@Auth loginMember: LoginMember,
@ModelAttribute request: OrderReadRequest,
request: OrderReadRequest,
): ResponseEntity<OrdersResponse> {
val query = request.toQuery(loginMember)
val response = orderService.readAll(query)
Expand Down

0 comments on commit d672574

Please sign in to comment.