Skip to content

Commit

Permalink
fix: 빌드 에러 재수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Woonseok105 committed Oct 24, 2023
1 parent 64ed147 commit 9159994
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.ResponseStatus
import org.springframework.web.bind.annotation.RestController
import javax.validation.Valid as VValid
import javax.validation.Valid

@RequestMapping("/user")
@RestController
Expand All @@ -37,7 +37,7 @@ class UserController(
userService.queryUserInfo()

@PutMapping("/profile")
fun updateUserInfo(@VValid @RequestBody request: UpdateUserInfoRequest) {
fun updateUserInfo(@Valid @RequestBody request: UpdateUserInfoRequest) {
userService.updateUserInfo(request)
}

Expand Down

0 comments on commit 9159994

Please sign in to comment.