-
Notifications
You must be signed in to change notification settings - Fork 0
Fix/#39 - 소셜로그인 된 이메일로 회원가입 위한 인증코드 전송 API 호출 시 이메일 전송 X #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a32114f
:sparkles: feat: 소셜로그인 구분을 위한 기존 EmailSentResponse 수정 및 PasswordReset…
ojy0903 7c22bc0
:sparkles: feat: 소셜로그인 구분을 위한 AuthProviderAccountRepository 메서드 추가
ojy0903 0d48647
:sparkles: feat: UserConverter 메서드 추가
ojy0903 dfc06d4
:bug: fix: 소셜 로그인만 진행된 상태일 경우 인증 이메일 전송하지 않고 반환값으로 알려주도록 변경
ojy0903 5269def
:bug: fix: 회원가입용 인증코드 전송 API, 비밀번호 재설정용 API 수정
ojy0903 eb28efb
Merge remote-tracking branch 'origin/develop' into fix/#39
ojy0903 63a5867
:art: style: 주석 변경
ojy0903 e074e26
:art: style: Swagger Docs 설명 추가
ojy0903 62ec197
:bug: fix: 잘못된 라이브러리 import 수정
ojy0903 1ce5347
:bug: fix: EmailSentResponse 에서 Provider 를 List 로 반환하도록 수정, Converter…
ojy0903 43e0edb
:bug: fix: AuthProviderAccountRepository 에서 User 로 AuthProviderAccoun…
ojy0903 ba42c5c
:bug: fix: Provider 를 여러개 추출할 수 있도록 변경
ojy0903 6292674
Merge remote-tracking branch 'origin/develop' into fix/#39
ojy0903 2de0ce7
:art: style: UserController Swagger Docs 수정
ojy0903 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
8 changes: 7 additions & 1 deletion
8
...va/com/whereyouad/WhereYouAd/domains/user/application/dto/response/EmailSentResponse.java
This file contains hidden or 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,8 +1,14 @@ | ||
| package com.whereyouad.WhereYouAd.domains.user.application.dto.response; | ||
|
|
||
| import com.whereyouad.WhereYouAd.domains.user.domain.constant.Provider; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| public record EmailSentResponse( | ||
| String message, //인증코드를 이메일로 전송했습니다. | ||
| String email, //전송한 이메일 | ||
| long expireIn //만료시간 (500L -> 500초) | ||
| Long expireIn, //만료시간 (500L -> 500초) | ||
| boolean isProviderLinked, | ||
| List<Provider> providerTypes | ||
| ) { | ||
| } |
8 changes: 8 additions & 0 deletions
8
...om/whereyouad/WhereYouAd/domains/user/application/dto/response/PasswordResetResponse.java
This file contains hidden or 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,8 @@ | ||
| package com.whereyouad.WhereYouAd.domains.user.application.dto.response; | ||
|
|
||
| public record PasswordResetResponse( | ||
| String message, //인증코드를 이메일로 전송했습니다. | ||
| String email, //전송한 이메일 | ||
| Long expireIn //만료시간 (500L -> 500초) | ||
| ) { | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.