Skip to content

Commit

Permalink
Merge pull request #274 from Juinjang/feat/#271
Browse files Browse the repository at this point in the history
[�feat/#271] 약관 동의 버전 API를 POST를 PATCH로 변경
  • Loading branch information
PicturePark1101 authored Jan 17, 2025
2 parents 5c8ea9b + 2c56a49 commit a7ed83f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ApiResponse<MemberResponseDto.profileDto> getProfile (@AuthenticationPrin
}

@Operation(summary = "약관 동의 버전 전송")
@PostMapping ("/members/terms")
@PatchMapping ("/members/terms")
public ApiResponse<Void> createMemberAgreeVersion(@AuthenticationPrincipal Member member, @RequestBody @Valid MemberAgreeVersionPostRequest memberAgreeVersionPostRequest) {
memberService.createMemberAgreeVersion(member, memberAgreeVersionPostRequest);
return ApiResponse.onSuccess(null);
Expand Down

0 comments on commit a7ed83f

Please sign in to comment.