From 8ca787b0e658825484a62946925146cf5bdce663 Mon Sep 17 00:00:00 2001 From: Minjae-An Date: Fri, 10 May 2024 17:23:14 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=95=8C=EB=A6=BC=20on/off=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20API,=20PATCH=EB=A1=9C=20=EC=88=98=EC=A0=95(#66)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 기존에는 해당 API를 통해 알림 내역이 없을 경우 생성 - 알림 내역 동의 여부를 수정만 하는 방향으로 로직 변경, 이에 따라 PUT에서 PATCH로 수정 --- .../main/java/yeonba/be/mypage/controller/MyPageController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/main/java/yeonba/be/mypage/controller/MyPageController.java b/be/src/main/java/yeonba/be/mypage/controller/MyPageController.java index d397ce90..bd328eaa 100644 --- a/be/src/main/java/yeonba/be/mypage/controller/MyPageController.java +++ b/be/src/main/java/yeonba/be/mypage/controller/MyPageController.java @@ -113,7 +113,7 @@ public ResponseEntity> updateProfile( @Operation(summary = "알림 on/off 설정", description = "알림별로 on/off를 설정할 수 있습니다.") @ApiResponse(responseCode = "200", description = "알림 on/off 설정 정상 처리") - @PutMapping("/users/notifications/permissions") + @PatchMapping("/users/notifications/permissions") public ResponseEntity> allowNotifications( @RequestAttribute("userId") long userId, @Valid @RequestBody UserAllowNotificationsRequest request) {