We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13af9c4 commit d8fd6f0Copy full SHA for d8fd6f0
src/main/java/com/back/domain/notification/controller/NotificationSettingController.java
@@ -38,7 +38,7 @@ public ResponseEntity<RsData<Void>> toggleSetting(
38
39
settingService.toggleSetting(currentUser.getUserId(), type);
40
41
- return ResponseEntity.ok(RsData.success(null));
+ return ResponseEntity.ok(RsData.success("알림 설정 토글 성공"));
42
}
43
44
@PutMapping("/all")
@@ -49,6 +49,6 @@ public ResponseEntity<RsData<Void>> toggleAllSettings(
49
50
settingService.toggleAllSettings(currentUser.getUserId(), enable);
51
52
+ return ResponseEntity.ok(RsData.success("알림 설정 전체 변경 성공"));
53
54
0 commit comments