-
Notifications
You must be signed in to change notification settings - Fork 1
[fix] 깃 레포 delete 매핑 및 이메일 등록 오류 수정 #42
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
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b989d5a
feat: 깃 허브 레포 조회 테스트 추가 (#40)
dnjstjt1297 c82e43f
fix: 실수로 커밋한 파일 삭제 (#40)
dnjstjt1297 dbf5434
fix: 이메일 입력 오류 수정 (#40)
songhyeongyu 13b74be
fix: null 삭제 및 로직 수정 (#40)
songhyeongyu f49f131
fix: dev와 병합 (#40)
dnjstjt1297 410005f
fix: 필요없는 html파일 삭제 (#40)
dnjstjt1297 aceaa4a
fix: 레포 삭제 delete매핑으로 변경 (#40)
dnjstjt1297 0a268ad
fix: 삭제 잘못한 파일 다시 업로드 (#40)
dnjstjt1297 3e62739
fix: 기여도 산정 로직 수정 (#40)
dnjstjt1297 065ca1d
fix: 패키지 경로 수정 (#40)
dnjstjt1297 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
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
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 |
|---|---|---|
|
|
@@ -27,4 +27,4 @@ class ConalApplicationTests { | |
| @Test | ||
| void contextLoads() { | ||
| } | ||
| } | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
만약에 이메일 패턴은 통과했는데 해당 이메일이 존재하지 않으면 어디서 에러를 잡는지 궁금합니다~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 코드에서 EMAIL_PATTERN은 문자열이 이메일 형식에 맞는지만 검증합니다. 즉, 정규식 검증을 통과한다고 해서 실제 존재하는 이메일이라는 보장은 없습니다.
그래서 SMTP ping 또는 인증 메일 전송 등으로 유효성을 확인해야 합니다.
SMTP 핑은 DNS 조회로 메일 서버 존재 확인 후 RCPT TO 명령으로 존재 여부를 탐색하지만 대부분 메일 서버가 거부하고
가장확실한 방법은 인증 메일 전송으로 유효성을 체크하는 것인데 아직 구현하지 않았습니다.