-
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.
Loading status checks…
✨ 로그인 API (#23)
* feat: 일반 로그인 요청 dto 작성 * feat: user repository find-by-username 메서드 추가 * feat: user service read-user-by-username 메서드 구현 * feat: 유저 비밀번호 예외 추가 * feat: user sync helper read-user-if-valid 메서드 * feat: auth user case내 sign in 메서드 추가 * feat: sign in api 추가 * test: sign in test case 추가 * fix: sign in dto 정규표현식 검사 제거
- Socket-v0.6.2
- Socket-v0.6.1
- Socket-v0.6.0
- Socket-v0.5.0
- Socket-v0.4.0
- Socket-v0.3.0
- Socket-v0.2.0
- Socket-v0.1.1
- Socket-v0.1.0
- Socket-v0.0.2
- Socket-v0.0.1
- Batch-v0.6.0
- Batch-v0.5.0
- Batch-v0.4.0
- Batch-v0.3.0
- Batch-v0.2.0
- Batch-v0.1.0
- Batch-v0.0.2
- Batch-v0.0.1
- Api-v1.0.0
- Api-v0.21.0
- Api-v0.20.1
- Api-v0.20.0
- Api-v0.19.0
- Api-v0.18.0
- Api-v0.17.1
- Api-v0.17.0
- Api-v0.16.0
- Api-v0.15.0
- Api-v0.14.0
- Api-v0.13.0
- Api-v0.12.5
- Api-v0.12.4
- Api-v0.12.3
- Api-v0.12.2
- Api-v0.12.1
- Api-v0.12.0
- Api-v0.11.1
- Api-v0.11.0
- Api-v0.10.0
- Api-v0.9.0
- Api-v0.8.1
- Api-v0.8.0
- Api-v0.7.2
- Api-v0.7.1
- Api-v0.7.0
- Api-v0.6.0
- Api-v0.5.0
- Api-v0.4.1
- Api-v0.4.0
- Api-v0.3.0
- Api-v0.2.7
- Api-v0.2.6
- Api-v0.2.5
- Api-v0.2.4
- Api-v0.2.3
- Api-v0.2.2
- Api-v0.2.1
- Api-v0.2.0
- Api-v0.1.0
- Api-v0.0.5
- Api-v0.0.4
- Api-v0.0.3
- Api-v0.0.2
- Api-v0.0.1
1 parent
39f97e9
commit f39cdb7
Showing
8 changed files
with
122 additions
and
1 deletion.
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
19 changes: 19 additions & 0 deletions
19
pennyway-app-external-api/src/main/java/kr/co/pennyway/api/apis/auth/dto/SignInReq.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,19 @@ | ||
package kr.co.pennyway.api.apis.auth.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import jakarta.validation.constraints.NotBlank; | ||
import lombok.AccessLevel; | ||
import lombok.NoArgsConstructor; | ||
|
||
@NoArgsConstructor(access = AccessLevel.PRIVATE) | ||
public class SignInReq { | ||
public record General( | ||
@Schema(description = "아이디", example = "pennyway") | ||
@NotBlank(message = "아이디를 입력해주세요") | ||
String username, | ||
@Schema(description = "비밀번호", example = "pennyway1234") | ||
@NotBlank(message = "비밀번호를 입력해주세요") | ||
String password | ||
) { | ||
} | ||
} |
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
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