Skip to content

Commit

Permalink
feat: 알림 on/off 설정 API, PATCH로 수정(#66)
Browse files Browse the repository at this point in the history
- 기존에는 해당 API를 통해 알림 내역이 없을 경우 생성
- 알림 내역 동의 여부를 수정만 하는 방향으로 로직 변경, 이에 따라 PUT에서 PATCH로 수정
  • Loading branch information
Minjae-An committed May 10, 2024
1 parent ed86b24 commit 8ca787b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public ResponseEntity<CustomResponse<Void>> updateProfile(

@Operation(summary = "알림 on/off 설정", description = "알림별로 on/off를 설정할 수 있습니다.")
@ApiResponse(responseCode = "200", description = "알림 on/off 설정 정상 처리")
@PutMapping("/users/notifications/permissions")
@PatchMapping("/users/notifications/permissions")
public ResponseEntity<CustomResponse<Void>> allowNotifications(
@RequestAttribute("userId") long userId,
@Valid @RequestBody UserAllowNotificationsRequest request) {
Expand Down

0 comments on commit 8ca787b

Please sign in to comment.