-
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.
Browse files
Browse the repository at this point in the history
signtoken의 social type 추출한는 방법 변경 #45
- Loading branch information
Showing
7 changed files
with
24 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
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
2 changes: 1 addition & 1 deletion
2
...dback/domain/user/dto/SigningAccount.java → ...sendback/domain/user/dto/SigningUser.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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package com.sendback.domain.user.fixture; | ||
|
||
import com.sendback.domain.user.dto.SigningAccount; | ||
import com.sendback.domain.user.dto.SigningUser; | ||
import com.sendback.domain.user.dto.request.SignUpRequestDto; | ||
import com.sendback.domain.user.entity.User; | ||
import com.sendback.domain.user.entity.SocialType; | ||
|
@@ -27,7 +27,7 @@ public class UserFixture { | |
private static final Gender GENDER = MALE; | ||
private static final String BIRTHDAY = "2000.01.01"; | ||
private static final Career CAREER = BACKEND; | ||
public static final SigningAccount MOCK_SIGNING_ACCOUNT = new SigningAccount("123", "mock", | ||
public static final SigningUser MOCK_SIGNING_ACCOUNT = new SigningUser("123", "mock", | ||
"mock_profile", "[email protected]", "kakao"); | ||
public static final SignUpRequestDto MOCK_SIGN_UP_REQUEST_DTO = new SignUpRequestDto("mock_user", "2000.01.01", | ||
"남자", "백엔드", Arrays.asList("예술/대중문화", "게임"), "valid signToken"); | ||
|