Skip to content

Commit

Permalink
fix: 초대 코드 조회 API 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed Jan 9, 2025
1 parent 6339626 commit 5d12297
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class InvitationController(
}.let { BaseResponse.success(it) }
}

@PostMapping("/get")
@PostMapping
override fun getBabiesByInvitationCode(@RequestBody request: InvitationDto.Request.Get): BaseResponse<List<BabyDto.Response.Detail>> {
return invitationService.getBabiesByInvitationCode(request.invitationCode).let { BaseResponse.success(it) }
}
Expand Down

0 comments on commit 5d12297

Please sign in to comment.