-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: dto 클래스 Record로 변환 (#126) - Java 17의 특성을 반영하여 auth 디렉토리의 dto를 모두 Record로 변경했습니다. - 불필요한 dto들을 제거했습니다. * cicd: workflow 내 sonarCloud 작업 제거
- Loading branch information
Showing
77 changed files
with
309 additions
and
858 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
4 changes: 3 additions & 1 deletion
4
...h/certification/CertificationService.java → ...uth/certificate/CertificationService.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
2 changes: 1 addition & 1 deletion
2
.../certification/RandomNumberGenerator.java → ...th/certificate/RandomNumberGenerator.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,4 +1,4 @@ | ||
package cmc.mellyserver.auth.certification; | ||
package cmc.mellyserver.auth.certificate; | ||
|
||
import java.util.Random; | ||
|
||
|
13 changes: 0 additions & 13 deletions
13
core/core-api/src/main/java/cmc/mellyserver/auth/certification/CertificationNumberDao.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
.../core-api/src/main/java/cmc/mellyserver/auth/certification/EmailCertificationRequest.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
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
...th/controller/dto/common/CurrentUser.java → ...ver/auth/common/resolver/CurrentUser.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
15 changes: 15 additions & 0 deletions
15
core/core-api/src/main/java/cmc/mellyserver/auth/common/resolver/LoginUser.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,15 @@ | ||
package cmc.mellyserver.auth.common.resolver; | ||
|
||
public class LoginUser { | ||
|
||
private final Long userId; | ||
|
||
public LoginUser(Long userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public Long getId() { | ||
return userId; | ||
} | ||
|
||
} |
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: 0 additions & 9 deletions
9
core/core-api/src/main/java/cmc/mellyserver/auth/config/RedisConstants.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
16 changes: 0 additions & 16 deletions
16
.../core-api/src/main/java/cmc/mellyserver/auth/controller/dto/common/AuthmeWrappingDto.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.