-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from MoneyMakersClub/develop
[Deploy] 일부 설정 옵션만 전달되어도 UserSetting 업데이트되도록 변경
- Loading branch information
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
bookduck/src/main/resources/mmc-bookduck-ocr.json |
7 changes: 3 additions & 4 deletions
7
...k/src/main/java/com/mmc/bookduck/domain/user/dto/request/UserSettingUpdateRequestDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
package com.mmc.bookduck.domain.user.dto.request; | ||
|
||
import com.mmc.bookduck.domain.user.entity.RecordFont; | ||
import jakarta.validation.constraints.NotNull; | ||
|
||
public record UserSettingUpdateRequestDto( | ||
@NotNull Boolean isPushAlarmEnabled, | ||
@NotNull Boolean isFriendRequestEnabled, | ||
@NotNull RecordFont recordFont | ||
Boolean isPushAlarmEnabled, | ||
Boolean isFriendRequestEnabled, | ||
RecordFont recordFont | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters