-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
165 additions
and
113 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
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
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
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
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ public class UserReq { | |
@AllArgsConstructor | ||
@Setter | ||
@Getter | ||
public static class LoginUserReq { | ||
public static class LoginUserDto { | ||
@ApiModelProperty(example = "[email protected]") | ||
private String username; | ||
@ApiModelProperty(example = "test1234") | ||
|
@@ -22,7 +22,7 @@ public static class LoginUserReq { | |
@AllArgsConstructor | ||
@Setter | ||
@Getter | ||
public static class SocialLoginUserReq { | ||
public static class SocialLoginUserDto { | ||
@ApiModelProperty(example = "[email protected]") | ||
private String username; | ||
@ApiModelProperty(example = "kakao") | ||
|
@@ -37,14 +37,11 @@ public static class SocialLoginUserReq { | |
@AllArgsConstructor | ||
@Setter | ||
@Getter | ||
public static class SignupUserReq { | ||
public static class SignupUserDto { | ||
private String username; | ||
private String password; | ||
private String name; | ||
private String imageUrl; | ||
|
||
@ApiModelProperty(example = "true or false") | ||
private boolean emailVerified; | ||
} | ||
|
||
|
||
|
@@ -53,7 +50,7 @@ public static class SignupUserReq { | |
@AllArgsConstructor | ||
@Setter | ||
@Getter | ||
public static class EmailAuthReq { | ||
public static class EmailAuthDto { | ||
private String email; | ||
} | ||
|
||
|
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
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
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
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
Oops, something went wrong.