-
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 #49 from team-nabi/NO-JIRA--beommo--user-profile-u…
…pdate-hotfix NO-JIRA--hotfix : 유저 프로필 업데이트 body로 받도록 변경
- Loading branch information
Showing
5 changed files
with
41 additions
and
28 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
9 changes: 9 additions & 0 deletions
9
...in/java/org/prgrms/nabimarketbe/domain/user/dto/request/UserNicknameUpdateRequestDTO.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.prgrms.nabimarketbe.domain.user.dto.request; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
|
||
public record UserNicknameUpdateRequestDTO( | ||
@NotBlank(message = "닉네임은 비어있으면 안됩니다.") | ||
String nickname | ||
) { | ||
} |
9 changes: 9 additions & 0 deletions
9
...ain/java/org/prgrms/nabimarketbe/domain/user/dto/request/UserProfileUpdateRequestDTO.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.prgrms.nabimarketbe.domain.user.dto.request; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
|
||
public record UserProfileUpdateRequestDTO( | ||
@NotBlank(message = "닉네임은 비어있으면 안됩니다.") | ||
String imageUrl | ||
) { | ||
} |
9 changes: 0 additions & 9 deletions
9
src/main/java/org/prgrms/nabimarketbe/domain/user/dto/request/UserUpdateRequestDTO.java
This file was deleted.
Oops, something went wrong.
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