Skip to content

Commit

Permalink
♻️ : fcm path 수정 (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed Oct 31, 2023
1 parent 85e0409 commit 408278f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public CommonResponse<UserRes.PatchUserInfo> getUserProfile(@AuthenticationPrinc

@ApiOperation(value = "02-05 프로필 편집 👤 FRAME MY",notes = "이미지 파일 변경할 경우 multipart 에 넣어주시고, 이미지 변경 안할 시 multipart null 값으로 보내주세영 아이디는 기존 아이디값+변경할 아이디값 둘중 하나 보내시면 됩니다")
@PatchMapping("/profile")
public CommonResponse<UserRes.ModifyUser> modifyUserProfile(@ModelAttribute UserReq.ModifyProfile modifyProfile,@AuthenticationPrincipal User user) throws IOException {
public CommonResponse<UserRes.ModifyUser> modifyUserProfile(@ModelAttribute UserReq.ModifyProfile modifyProfile, @AuthenticationPrincipal User user) throws IOException {
UserRes.ModifyUser modifyUser=userService.modifyUserProfile(user,modifyProfile);
return CommonResponse.onSuccess(modifyUser);
}
Expand Down Expand Up @@ -254,7 +254,7 @@ public CommonResponse<String> unActiveAppleUser(@AuthenticationPrincipal User us


@ApiOperation(value = "02-20 FCM 토큰 등록👤 ",notes = "FCM token 등록")
@PatchMapping("/apple/active")
@PatchMapping("/fcm")
public CommonResponse<String> postFcmToken(@AuthenticationPrincipal User user, @RequestBody UserReq.FcmToken fcmToken ){
userService.postFcmToken(user, fcmToken);
return CommonResponse.onSuccess("회원 탈퇴 완료");
Expand Down

0 comments on commit 408278f

Please sign in to comment.