Skip to content

Commit

Permalink
Fix type of request at GoalGifticonController.create
Browse files Browse the repository at this point in the history
  • Loading branch information
mkSpace committed Apr 22, 2024
1 parent eeb32d5 commit 7befabb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class GoalGifticonController(
@PostMapping
fun create(
@GetAuth userInfo: UserInfo,
@Valid request: GoalGifticonCreateRequest,
@Valid @RequestBody request: GoalGifticonCreateRequest,
): Response<GoalGifticonResponse> {
return Response.success(
goalGifticonApplicationService.createAndUploadGifticon(request.toServiceRequest(userInfo.id))
Expand Down

0 comments on commit 7befabb

Please sign in to comment.